当前位置:  开发笔记 > 编程语言 > 正文

如果python中的语句没有打印

如何解决《如果python中的语句没有打印》经验,为你挑选了1个好方法。



1> Mike Müller..:

我会写这样的东西:

# Assumes Python 3
# Python 2: Use `raw_input` instead of input

common_letters = 'rstlne'
prompt = "Name one of the most common letters in wheel of fortune puzzles: "

while True:
    letter = input(prompt).strip()
    if letter in common_letters:
        print(letter, "is one of the most common letters!")
        break
    else:
        print("Incorrect!")
        answer = input('Type "end" to exit: ')
        if answer.strip() == 'end':
            break

我改变了一些事情:

    而不是if我使用的那么多陈述if letter in common_letters:.这允许您只需添加矿石删除​​另一个字母common_letters.

    input(prompt).strip()用来剥去额外的空白区域.

    while True如果没有输入常用字母,我会一次又一次地使用循环来重复这个问题.该break终止这个循环,即在编程'完成.

推荐阅读
mobiledu2402851203
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有