1.字符串是 Python 中最常用的数据类型。我们可以使用引号('或")来创建字符串。 创建字符串很简单,只要为变量分配一个值即可。例如: var1 = 'Hello World!' 2.列表是最常用的Python数据类型,它可以作为一个方括号内的逗号分隔值出现。 列表的数据项不需要具有相同的类型 创建一个列表,只要把逗号分隔的不同的数据项使用方括号括起来即可,例如: list1 = ['physics', 'chemistry', 1997, 2000] list2 = [1, 2, 3, 4, 5 ] list3 = ["a", "b", "c", "d"] 3.Python的元组与列表类似,不同之处在于元组的元素不能修改。 元组使用小括号,列表使用方括号。 元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。例如: tup1 = ('physics', 'chemistry', 1997, 2000) tup2 = (1, 2, 3, 4, 5 ) tup3 = "a", "b", "c", "d" 4.这三种数据类型的转换如下: 字符串转列表 str = '123456' li = list(s) print(li)
列表转字符串 li = ['1', '2', '3', '4', '5', '6'] str = ''.join(li) print(str)
列表转元祖 lis = ['1', '2', '3', '4', '5', '6'] a_tuple = tuple(lis) print(a_tu)
字符串转元祖 s = '123456' a_tu = tuple(s) print(a_tu)
元祖转字符串 s = ('1', '2', '3', '4', '5', '6') a_tuple= ''.join(s) print(a_tuple)
元祖转列表 s = ('1', '2', '3', '4', '5', '6') a_tuple = list(s) print(a_tuple)
|