0
点赞
收藏
分享

微信扫一扫

python3细节

多变量赋值

# Assign values directly
a, b = 0, 1
assert a == 0
assert b == 1

# Assign values from a list
(r,g,b) = ["Red","Green","Blue"]
assert r == "Red"
assert g == "Green"
assert b == "Blue"

# Assign values from a tuple
(x,y) = (1,2)
assert x == 1
assert y == 2

循环

#正常循环 
for (index,file) in enumerate(os.listdir(base_path)):
# 想跳过
#只能while循环


举报

相关推荐

Python3细节总结

Python3

no python3

python3 pandas

android python3

python3 redis

0 条评论