任务.自己的列表
想想自己喜欢的通勤方式,创建一个包含多种通勤方式的列表。根据该列表打印一系列有关的这些通勤方式的宣言。
- 结果
- 源代码
# coding=utf-8
# 创建自己的通勤方式的列表和有关宣言
commuting=['bus','walking','taxi','car']
a="I usually go to school by"+commuting[0]+"."
b="More and more people are used to "+commuting[1]+"."
c="Hey!"+commuting[2].title()+"!"
d="I want to own a "+commuting[3]+"."
print(a)
print(b)
print(c)
print(d)
- 分析
- 在Python中,用方括号([ ])来表示列表,并用逗号来分隔其中的元素