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

如果不工作

如何解决《如果不工作》经验,为你挑选了1个好方法。

我正在尝试创建一个简单的程序,我要求用户放置name,age然后使用if else打印结果.

我希望什么时候放到20岁,所以结果应该来

祝贺你的年龄是20,你可以找到真相

但这里不起作用的是我正在使用的代码.

name = input("what is your name \n")
print('Nice to meet you', name, "!!")
age = input("Your Age ? \n")

if age > 18:
    print('Congratulation ' + name + ' your age is '+ str(age), ' and you can find the truth ')
else:
    print('Sorry ' + name + 'your age is '+ str(age), ' and you can also find the truth if you start from today')

运行我的代码后我得到的错误.

错误

what is your name 
Edit
Nice to meet you Edit !!
Your Age ? 
20
Traceback (most recent call last):
  File "C:/Users/hp/PycharmProjects/Project/input_user.py", line 5, in 
    if age > 18:
TypeError: unorderable types: str() > int()

帮我解决这个问题.



1> Arc676..:

阅读错误消息:

TypeError: unorderable types: str() > int()

您正在尝试比较字符串和整数.您必须将输入转换为int第一个:

age = int(input("Your Age ? \n"))

这将允许您将其与数字进行比较.

或者,在需要与数字进行比较时进行转换

if int(age) > 18:

但现在这更像是一个可用性问题.最好将它简单地转换int为一旦你得到它,因为年龄你可能需要的数值超过字符串值.

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