如何打印列表的单个元素?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何打印列表的单个元素?相关的知识,希望对你有一定的参考价值。
我是初学者,为我考试做准备,我需要一些帮助,我知道这是我可以得到帮助的最佳地点。我写了一个小代码
for i in range (days)
day=[]
day.append('monday')
day.append('tuesday')
print()
我需要知道我是否只想打印星期一,这是列表的第一个元素,它的代码是什么。我试过day.i(1)但它不起作用你可以帮我解决它。代码是在python中。谢谢。
答案
days=[]
days.append("Monday ")
days.append(" Tuesday")
print days[0]
days[0] is the index position of your first element. (I.e, "Monday")
另一答案
我的猜测是你想要这个:
day=[]
day.append('monday')
day.append('tuesday')
for i in range(day):
print(day[i])
另一答案
这是一个更简单的代码。
weekdays = []
weekdays.append('monday')
weekdays.append('tuesday')
weekdays[0] ## First element of the list will be printed
weekdays[1] ## Second element of the list will be printed
编辑:对不起,我不得不两次编辑这个答案。它写得很匆忙。此外,这是我发布的第一个答案。
以上是关于如何打印列表的单个元素?的主要内容,如果未能解决你的问题,请参考以下文章