python中for _ in range ()详解

python中for _ in range () 中’_'的意思

a = 0
b = 1
for _ in range(20):
    print(a, end=' ')

’_’ 是一个循环标志

你可能感兴趣的:(python)