题解 | #字符列表的长度#
字符列表的长度
https://www.nowcoder.com/practice/feb18b858e1846c7884f802eca8be144
# 习惯用列表生成器!!!
"""
a = 'Python'
my_list = []
for i in a:
my_list.append(i)
"""
# 换成列表生成式
my_list = [i for i in 'Python']
print('Here is the original list:',my_list,sep = '\n')
print()
print('The number that my_list has is:',len(my_list),sep='\n')