@@ -54,7 +54,8 @@ Python可以从这里下载:https://www.python.org/downloads/
54
54
55
55
- 字符串操作: ::
56
56
57
- >>> word = 'Help' + 'A' >>> word
57
+ >>> word = 'Help' + 'A'
58
+ >>> word
58
59
'HelpA'
59
60
>>> word[4]
60
61
'A'
@@ -65,7 +66,8 @@ Python可以从这里下载:https://www.python.org/downloads/
65
66
66
67
- 列表(list)操作: ::
67
68
68
- >>> a = ['spam', 'eggs', 100, 1234] >>> a[0]
69
+ >>> a = ['spam', 'eggs', 100, 1234]
70
+ >>> a[0]
69
71
'spam'
70
72
>>> a[3]
71
73
1234
@@ -78,9 +80,11 @@ Python可以从这里下载:https://www.python.org/downloads/
78
80
79
81
- ``while `` 循环: ::
80
82
81
- # Fibonacci series:
83
+ # Fibonacci series:
84
+ >>> a = 0
85
+ >>> b = 1
82
86
>>> while b < 10:
83
- ... print b
87
+ ... print (b)
84
88
... a, b = b, a+b
85
89
...
86
90
1
@@ -93,26 +97,27 @@ Python可以从这里下载:https://www.python.org/downloads/
93
97
- ``if `` 命令:
94
98
首先我们用 ``input() `` 从键盘读入一个整数: ::
95
99
96
- >>>x = int(input("Please enter an integer here: "))
100
+ >>> x = int (input (" Please enter an integer here: " ))
97
101
Please enter an integer here:
98
102
99
103
然后在输入的数字中使用 ``if `` 进行判断: ::
100
104
101
- >>>if x < 0:
102
- ... print ('the number is negative')
103
- ...elif x == 0:
104
- ... print ('the number is zero')
105
- ...elif x == 1:
106
- ... print ('the number is one')
107
- ...else:
108
- ... print ('More')
105
+ >>> if x < 0 :
106
+ ... print (' the number is negative' )
107
+ ... elif x == 0 :
108
+ ... print (' the number is zero' )
109
+ ... elif x == 1 :
110
+ ... print (' the number is one' )
111
+ ... else :
112
+ ... print (' More' )
109
113
...
110
114
111
115
- ``for `` 循环:::
112
116
113
117
>>> # Measure some strings:
114
- ... a = ['cat', 'window', 'defenestrate'] >>> for x in a:
115
- ... print (x, len(x))
118
+ >>> a = ['cat', 'window', 'defenestrate']
119
+ >>> for x in a:
120
+ ... print (x, len(x))
116
121
...
117
122
cat 3
118
123
window 6
@@ -121,13 +126,13 @@ Python可以从这里下载:https://www.python.org/downloads/
121
126
- 定义函数: ::
122
127
123
128
>>> def fib(n): # 生成n以内的菲波那切数列
124
- ... """Print a Fibonacci series up to n."""
129
+ ... # """Print a Fibonacci series up to n."""
125
130
... a, b = 0, 1
126
131
... while b < n:
127
132
... print(b),
128
133
... a, b = b, a+b
129
134
>>> # Now call the function we just defined:
130
- ... fib(2000)
135
+ >>> fib(2000)
131
136
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597
132
137
133
138
- 导入模块: ::
0 commit comments