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