将字典转换成变量, 字符串与列表相互转换

Posted 何必从头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将字典转换成变量, 字符串与列表相互转换相关的知识,希望对你有一定的参考价值。

将字典转换成变量:
>>> locals().update({a:1,b:2})
>>> a
1
>>> b
2

字符串与列表相互转换
    str >>>list 
        str1 = "12345"  
        list1 = list(str1)  
        print list1  
          
        str2 = "123 sjhid dhi"  
        list2 = str2.split() #or list2 = str2.split(" ")  
        print list2  
          
        str3 = "www.google.com"  
        list3 = str3.split(".")  
        print list3  
    list >>>str
        str4 = "".join(list3)  
        print str4  
        str5 = ".".join(list3)  
        print str5  
        str6 = " ".join(list3)  
        print str6  
    
    
    

 

以上是关于将字典转换成变量, 字符串与列表相互转换的主要内容,如果未能解决你的问题,请参考以下文章

python字符串列表字典相互转换

Python - 列表与字典相互转换

Python 字符串/列表/元组/字典之间的相互转换

python 字典列表字符串 之间的转换

python 字典列表字符串 之间的转换

python 字典列表字符串 之间的转换