random
|
1
2
3
4
5
|
import randomprint(random.random())print(random.randint(1, 2))print(random.randrange(1, 10)) |
import random
checkcode = ''
for i in range(4):
current = random.randrange(0,4)
if current != i:
temp = chr(random.randint(65,90))
else:
temp = random.randint(0,9)
checkcode += str(temp)
print checkcode
随机验证码