python 简单demo -- 猜数字 python编程:从入门到实践
自己书写的源码:from random import randintdef guess():a = randint(1,100)b=int(input("I'm thinking of a number! Try to guess the number I'm thinking of:"))while True:if a == b:again=input('T...
原创
2020-03-20 22:01:32 ·
325 阅读 ·
0 评论