I have string like
s='www.gmail.com?uname=mark&pwd=test&age=20'
and i want string(s) to be converted into dict(d) in following manner
d={'uname':'mark','pwd':'test','age':20}
Thanks a lot
I have string like
s='www.gmail.com?uname=mark&pwd=test&age=20'
and i want string(s) to be converted into dict(d) in following manner
d={'uname':'mark','pwd':'test','age':20}
Thanks a lot