
练习
abcd2333
这个作者很懒,什么都没留下…
展开
-
python --demo --猜数字
自己创作的源码: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(‘That"s it! W...原创 2020-03-20 22:07:21 · 206 阅读 · 0 评论 -
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 评论