- 博客(3)
- 收藏
- 关注
转载 py_格式化输出_%占位符输出
# % 占位符(占个位置) # s 字符串型 # d 整型 name = input('请输入姓名:') age = input('请输入年龄:') height = input('请输入身高:') infor = '''---info of %s--- 我叫%s 年龄%d 身高%s -------end-------''' % (name, name, int(...
2019-02-25 10:48:00 369
转载 py_用户登录(三次机会重试)
username = '987654321' password = '123456789' count = 0 while count < 3: c = input('请输入账号:') d = input('请输入密码:') if c == username and d == password: print('登陆成功') ...
2019-02-25 10:20:00 433
转载 py_pass用法
NUM = 0 a = 0 while a < 100: a = a + 1 if (a % 2) == 0: print(a) else: pass 转载于:https://www.cnblogs.com/JJJay/p/10429366.html
2019-02-25 10:09:00 246
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人