将字典转变为字符串 dict to string
Python3.x
1 | # urllib.parse.urlencode(query, doseq=False, [...]) |
Python2.x
1 | from urllib import urlencode |
Python2 和Python3的兼容写法
1 | try: |
将字符串转换为字典 string to dict
Python3
方法1 使用urllib.parse.parse_qs()
1 | # import module |
方法2 使用正则表达式
1 | import re |
方法3 使用Split()
1 | #python program to convert |