平常心丿 发表于 2019-7-23 13:53:49

python中的while循环

name = ''
while not name:
    name = input('please enter your name:')
print('hello,'+name)


为什么我按回车键就能一直循环please enter your name: (见图片)
按回车相当于与循环条件(not name)不相符,循环体按道理应该不执行
但是我输入字符的时候(见图片刘某),与循环条件相符,但程序只运行一次,为什么
希望各位大咖能帮我解释一下while循环
小弟纯新手,请各位大神点睛。

jackz007 发表于 2019-7-23 13:59:44

本帖最后由 jackz007 于 2019-7-23 14:01 编辑

name = ''
while not name:
    name = input('please enter your name:')
       如果 name 的内容是空串就继续循环(input() 函数直接回车得到的就是空串,字符串长度为 0),直到字符串 name 的内容不为空(字符串长度不为 0) 。

平常心丿 发表于 2019-7-23 14:01:56

jackz007 发表于 2019-7-23 13:59
如果 name 的内容是空串就继续循环(input() 函数直接回车得到的就是空串,字符串长度为 0),直 ...

感谢感谢,理解了

lmanwh 发表于 2019-7-24 08:21:25

楼主明白了么,在解释一下呗,While not name 不是name的内容不是空字符的时候继续循环吗

Maxiangwang 发表于 2019-8-3 06:03:31

本帖最后由 Maxiangwang 于 2019-8-3 09:51 编辑

name = ''
times = 3
while times > 0:
    name = input('please enter your name:')
    times = times - 1
    if times > 0:
      print("你还可以输入:")
    else:
      print("次数用完了")
    print('hello,'+name)

Maxiangwang 发表于 2019-8-3 06:04:21

times是次数,你可以自己设定次数

回忆浅离 发表于 2019-8-3 08:02:50

空字符串
页: [1]
查看完整版本: python中的while循环