题解 | #字符列表的长度#
字符列表的长度
https://www.nowcoder.com/practice/feb18b858e1846c7884f802eca8be144
a = ['P','y','t','h','o','n']
print('Here is the original list:',a,sep='\n')
print()
print('The number that my_list has is:',len(a),sep='\n')
#题解#
print('Here is the original list:',a,sep='\n')
print()
print('The number that my_list has is:',len(a),sep='\n')
#题解#