<div>
    <b> "Key1" </b>
    " Value1 "
    <br>
    <b> "Key2" </b>
    " Value2 "
    <br>
    <b> "Key3" </b>
    " Value3 "
    <br>
Here i need the keys as keys in a dict 'A' and values as values of A[keys]
<div>
    <b> "Key1" </b>
    " Value1 "
    <br>
    <b> "Key2" </b>
    " Value2 "
    <br>
    <b> "Key3" </b>
    " Value3 "
    <br>
Here i need the keys as keys in a dict 'A' and values as values of A[keys]
 
    
    I just tried another method and it is working.
made a dict by using zip() function;
data_dict = dict(zip(dict_keys,dict_values))
Now the data_dict is the required dictionary which contains the keys and values
