题解 | #字符列表的长度#
字符列表的长度
http://www.nowcoder.com/practice/feb18b858e1846c7884f802eca8be144
NP14 字符列表的长度
思路:
step1:按照要求对应输入输出即可;
代码如下:
my_list = ['P', 'y', 't', 'h', 'o', 'n']
print('Here is the original list:')
print(my_list)
print()
print('The number that my_list has is:')
print(len(my_list))