web 和 Internet开发
科学计算和统计
人工智能
教育
桌面界面开发
软件开发
后端开发
网络爬虫
print
隔行 / 连续 / 间隔输出
print(a) == print(a,end='\\n')
print(a, end='')
print(a, end=' ')
/
(除)
(-13)/3 = -5
# 3*(-5)<-13<3*(-4)
%
(取模)
(-13)%3 = 2
# |(-13)-(-15)| = 2
if
语句
if a:
elif a>b: #用于再判断
else:
while
语句
while true:
if a < b:
break #不再执行后面的语句,跳出while循环
elif a > b:
continue #不再执行后面的语句,重新while循环
else:
else:
for
语句
for a > b:
else: 可选
range(a,b)
左包括右不包括
range(1,4) = [1,2,3]
range(1,4,2) = [1,3]
# 函数里的变量只在函数内部有效
x =50
def func(x):
print('x is', x)
x = 2
print('Changed local x to', x)
func(x)
print('x is still', x)
# 输出
x is 50
changed local x to 2
x is still 50
global
语句
x =50
def func():
global x
print('x is', x)
x = 2
print('Changed global x to', x)
func()
print('Value of x is', x)
# 输出
x is 50
changed global x to 2
value of x is 2
def func(a, b=5) #有效
def func(a=5,b) #无效
def max(a,b):
'''选取最大值'''
help(max)
# 输出
max(a,b)
选取最大值
zip
命令
上一篇:编程语言this的绑定规则
下一篇:编程语言的Istio分层架构
¥498.00
¥399.00
¥299.00
¥29.00