1. 首页
  2. 数据库
  3. 其它
  4. Python中for循环和while循环的基本使用方法

Python中for循环和while循环的基本使用方法

上传者: 2020-12-31 15:20:42上传 PDF文件 49.47KB 热度 24次
while循环: while expression: suite_to_repeat while 条件: 语句块 不需要括号哦! >>> x 1.2 >>> while x < 2 xss=removed>>> 经常用 : while True: .... if ... : break .... for循环: for iter_var in iterable: suite_to_repeat for
用户评论