如何获取<b>下的文本作为值和<b>内的文本作为字典的键

时间:2018-09-13 07:52:09

标签: python python-3.x

<div>
    <b> "Key1" </b>
    " Value1 "
    <br>
    <b> "Key2" </b>
    " Value2 "
    <br>
    <b> "Key3" </b>
    " Value3 "
    <br>

在这里,我需要将键作为字典'A'中的键,并将值作为A [keys]的值

1 个答案:

答案 0 :(得分:0)

我刚刚尝试了另一种方法,它正在工作。

  1. 将“ Key1”,“ Key2”,“ Key3”添加到名为dict_keys的列表中
  2. 将“ Value1”,“ Value2”,“ Value3”添加到名为dict_values的列表中
  3. 使用zip()函数做出命令;

    li = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]
    i = 0
    while i < len(li):
        print(i)
        if i == 3:
            i = 10
            print(i)
        i += 1 # increment i at the end of the loop
    

现在data_dict是必需的字典,其中包含键和值