range的使用:注意,在python3中,交互模式下已经不显示了

for循环的使用

打印50-70

# 第一种方案
for i in range(100):
if i <= 70 and i >= 45: #注意这里使用的是 and/or/not 非java中的&&,||,!
print (i)
# 第二种方案
for i in range(50,71):
print (i)

break/continue的使用

exit_Flag = False
for i in range(100):
if i < 5:
continue
print("L_1:",i)
for j in range(10):
print("layer2:",j)
if j == 7:
exit_Flag=True
break
if exit_Flag:
break

用户登录小程序

_user="hhh"
_pass="hello"
count = 1
while count <= 3:
username = input("Please input the username:")
password = input("Please input the password:")
if _pass == password and _user == username:
print("Welcome to BBT,", username)
break
else:
print()
print("Invalid username or password,you still have " + str(3 - count) + " times")
count += 1
else:
print("Time out,~-~")

最新文章

  1. Could not find or load main class org.gradle.wrapper.GradleWrapperMain解决办法
  2. android图片透明度跟缩放大小动画事件
  3. 与类相关基本概念----Beginning Visual C#
  4. PYTHON 自动化学习之路
  5. AngularJS-Controller的使用-读书笔记
  6. 16进制色值转换成RGB
  7. Looper
  8. linux命令:cat
  9. leetcode:Remove Linked List Elements
  10. 基于SAE+CodeIgniter3.0+管理端angularjs+前台amazeui的多用户博客系统V1.0--系统设计(一)
  11. XP教育网用户免费上网
  12. ubuntu系统普通用户sudo命令执行报错解决方案
  13. 解析Visual C# 7.2中的private protected访问修饰符
  14. 基于Struts+Hibernate开发过程中遇到的错误
  15. Luogu P3374 【模板】树状数组 1
  16. 派生类时使用private的目的 《私有派生》
  17. openstack 资料
  18. @react-native-community/async-storage在Android上的手动link问题
  19. express设置模板引擎
  20. vue - 使用axios

热门文章

  1. 033-JsonUtils 工具类模板
  2. 前端思想实现:面向UI编程_____前端框架设计开发
  3. 创建第一个WCF服务
  4. cursor : 普通,带参,可更新的游标。使用游标遍历时,强烈建议用for循环!!!
  5. android studio的jni和so
  6. 编译可移植的python
  7. JavaScript的柯里化函数
  8. [linux] shell脚本编程-xunsearch安装脚本学习
  9. Redis 的 Lua 脚本支持
  10. Jquery获取radio选中的值