第一个python程序,保存为test.py
print("Hello, World!")
在命令行输入
python test.py
例子:
a = 10
_a1 = 11
_A1 = 12
print(a, _a1, _A1)
保留字即关键字,我们不能把它们用作任何标识符名称。
import keyword
keyword.kwlist
Python中单行注释以 # 开头
# 第一个注释
print ("Hello, Python!") # 第二个注释
多行注释可以用多个 # 号,还有 ‘’’ 和 “”"
# 第一个注释
# 第二个注释
'''
第三注释
第四注释
'''
"""
第五注释
第六注释
"""
python最具特色的就是使用缩进来表示代码块,不需要使用大括号 {} 。
缩进的空格数是可变的,但是同一个代码块的语句必须包含相同的缩进空格数。
if True:
print ("True")
else:
print ("False")
Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠 \ 来实现多行语句
total = item_one + \
item_two + \
item_three
在 [], {}, 或 () 中的多行语句,不需要使用反斜杠 \,例如:
total = ['item_one', 'item_two', 'item_three',
'item_four', 'item_five']
python中数字有四种类型:整数、布尔型、浮点数和复数。
执行下面的程序在按回车键后就会等待用户输入:
input("\n\n按下 enter 键后退出。")
Python 可以在同一行中使用多条语句,语句之间使用分号 ; 分割
i = 1; j = 2; print(i, j)
缩进相同的一组语句构成一个代码块,我们称之代码组。
像if、while、def和class这样的复合语句,首行以关键字开始,以冒号( : )结束,该行之后的一行或多行代码构成代码组。
i = 1
if i > 0:
i += 1
print(i + 10)
print 默认输出是换行的,如果要实现不换行需要在变量末尾加上 end=“”
x="a"
y="b"
# 换行输出
print( x )
print( y )
print('---------')
# 不换行输出
print( x, end=" " )
print( y, end=" " )
print()
在 python 用 import 或者 from…import 来导入相应的模块。
将整个模块(somemodule)导入,格式为: import somemodule
从某个模块中导入某个函数,格式为: from somemodule import somefunction
从某个模块中导入多个函数,格式为: from somemodule import firstfunc, secondfunc, thirdfunc
将某个模块中的全部函数导入,格式为: from somemodule import *
Python允许同时为多个变量赋值。
a = b = 1
c, d = 1.2, "ss"
print(a, b, c, d)
不可变数据类型:Number,String,bool, Tuple
可变数据类型: List, Set, Dictionary
Python 条件语句是通过一条或多条语句的执行结果(True 或者 False)来决定执行的代码块。
if语句
i = 0
if i > 0:
print("i > 0")
elif i < 0:
print("i < 0")
else:
print("i = 0")
while循环
while 判断条件(condition):
执行语句
else:
执行语句
for 循环可以遍历任何可迭代对象,如一个列表或者一个字符串。
for <variable> in <sequence>:
<statements>
else:
<statements>
range() 函数,生成数列
for i in range(0, 5, 2):
print(i)
break和continue
pass 语句
pass 不做任何事情,一般用做占位语句
函数是组织好的,可重复使用的,用来实现单一,或相关联功能的代码段。
语法
def 函数名(参数列表):
函数体