17-7-20 Python 从入门到实践 2.5.1- 3.1.3

2.5注释

2.5.1 注释写法

#标识

好从现在开始就在程序中添加描述性注释。

2.6 Python 之禅

1)Simple is better than complex.

2)Complex is better than complicated.现实复杂,选最简单可行的。

3) Readability counts. 易于理解,写有益的注释

4) There should be one-- and preferably only one --obvious way to do it.你的程序中,各种具体细节对其他Python程序员来说都应易于理解。

5)Now is better than never.。不要企图编写完美无缺的代码;先编写行之有效的代码


3 列表

3.1定义:由一系列按特定顺序排列的元素组成, 用方括号表示。通常是多元素,制定一个表示复数的名称,

eg: bicycles = ['trek', 'cannondale', 'redline', 'specialized']

3.1.1 访问列表元素

bicycles[0]  列表名称[列表索引]

bicycles[0].title()      对任何列表元素调用字符串方法

3.1.2 索引 从0开始

bicycles[-1]访问倒数第一个元素

3.1.3列表元素的使用

bicycles = ['trek', 'cannondale', 'redline', 'specialized']

message = "My first bicycle was a " + bicycles[0].title() + "."

print(message)

My first bicycle was a Trek.

作业:

17-7-20 Python 从入门到实践 2.5.1- 3.1.3_第1张图片

for 的写法

for i in range():

for i in list:

for i in list.items():

Candice Hu 教的


17-7-20 Python 从入门到实践 2.5.1- 3.1.3_第2张图片

你可能感兴趣的:(17-7-20 Python 从入门到实践 2.5.1- 3.1.3)