会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
antonrr
博客园
首页
新随笔
联系
订阅
管理
2023年7月20日
第二天,三次登录
摘要: #用户登录3次机会 i = 0 while i < 3 : username = input("请输入用户名:") password = int(input("请输入密码:")) if username == 'cxr' and password ==123: print('Sucessed') e
阅读全文
posted @ 2023-07-20 10:50 antonrr
阅读(15)
评论(0)
推荐(0)
2023年7月19日
第一天自学python笔记
摘要: count = 0 while count < 10: count += 1 #自增 if count == 7: pass else:print(count) 方法一: count = 1 while count < 101: print(count) count += 2 方法二: count
阅读全文
posted @ 2023-07-19 21:40 antonrr
阅读(12)
评论(0)
推荐(0)
公告