列表

详情


NP49. 字符列表的长度

描述

创建一个依次包含字符串'P'、'y'、't'、'h'、'o'和'n'的列表my_list,
使用print()语句一行打印字符串'Here is the original list:',再直接使用print()语句把刚刚创建的列表my_list整个打印出来,
输出一个行,再使用print()语句一行打印字符串'The number that my_list has is:',
再使用len()函数获取列表my_list里面有多少个字符串,并使用print()函数一行打印该整数

输入描述

输出描述

按题目描述进行输出即可(注意前后两个输出部分需以一个空行进行分隔)。
Here is the original list:
['P', 'y', 't', 'h', 'o', 'n']

The number that my_list has is:
6

原站题解

Python 解法, 执行用时: 10ms, 内存消耗: 2832KB, 提交时间: 2022-07-03

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))

Python 解法, 执行用时: 10ms, 内存消耗: 2832KB, 提交时间: 2022-06-30

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)

Python 解法, 执行用时: 10ms, 内存消耗: 2836KB, 提交时间: 2022-06-15

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))

Python 解法, 执行用时: 10ms, 内存消耗: 2840KB, 提交时间: 2022-06-23

my_list = ['P','y','t','h','o','n']
print 'Here is the original list:','\n', my_list 
print ''
print 'The number that my_list has is:','\n',len(my_list)

Python 解法, 执行用时: 10ms, 内存消耗: 2840KB, 提交时间: 2022-06-23

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)

上一题