wideband 发表于 2021-11-30 15:16:30

如何 打印list定义的列表? missing para in call to print

L=['hello']
print(L)

显示: ['hello']

list('hello')
print(list)

显示 :<class 'list'>


list = []          ## 空列表
list.append('Google')   ## 使用 append() 添加元素
list.append('Runoob')
print list

提示:missing para in call to print

wideband 发表于 2021-11-30 15:28:58

list('hello')
print(list)由于print(), ()内填写变量,list 不是变量, 如何打印呢?

list = []          ## 空列表
list.append('Google')   ## 使用 append() 添加元素
list.append('Runoob')
print (list) ## 漏写了 ()

灰晨 发表于 2021-11-30 15:31:48

x = list('hello')
print(x)
页: [1]
查看完整版本: 如何 打印list定义的列表? missing para in call to print