微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Python代码运行if和elif语句时出现问题

如何解决Python代码运行if和elif语句时出现问题

我遇到的另一个简单问题。 如果我运行以下代码并输入8或9作为输入,则该代码将返回正确的响应。输入较大的数字(例如10、20)后,它只会返回“我的袜子比你多” 这与int和str值有关还是我只是弄乱了代码。请以通俗易懂的方式进行解释。

 my_socks = "7"

 user_input = input("How many socks do you have?")

 if user_input < my_socks:
    print("I have more socks than you!")
 elif user_input > my_socks:
    print("You have more socks than me!")

非常感谢

解决方法

您实际上是在比较字符串,因此它使用lexicographic order(按字母顺序排列),这意味着'10' < '7',因为您逐个字符地看着'1' < '7'

您需要int s

my_socks = 7    
user_input = int(input("How many socks do you have?"))

if user_input < my_socks:
    print("I have more socks than you!")
elif user_input > my_socks:
   print("You have more socks than me!")
else:
   print("We have the same amount !")
,

当python读取用户输入内容时,默认类型为str,请选中here

我建议您处理数字(int)以使您的程序在您的情况下可用。这是因为当您使用字符串值评估条件时,实际上是在使用ASCII(ASCII表示信息交换的美国标准代码)。所以'7'转换为55和'10',因为它有2个字符,只会将'1'的值转换为49

如果您执行以下操作,您的程序将按预期运行。

my_socks = 7
user_input =  int(input("How many socks do you have?"))
if user_input < my_socks:
    print("I have more socks than you!")
elif user_input > my_socks:
    print("You have more socks than me!"

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。