标题:关于int和str的一些疑惑
取消只看楼主
aa2820981
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2019-7-16
结帖率:100%
已结贴  问题点数:18 回复次数:1 
关于int和str的一些疑惑
代码为:
prompt = '\nPlese input your age,we will offer you the price!'
prompt += '\nIf you want to leave,please input "quit"!'

active = True
while active:
    age = input(prompt)
    if age == 'quit':
        break
    if age <= 3:
        print("Your price is free!")
    elif age > 3 and age <=12:
        print("Your price is 10")
    elif age > 12:
        print("Your price is 15")
   
   
代码运行无异常。
可是按照我个人的理解,当用户输入的时候,因为有数字的比较,如果不定义age的类型,是无法进行的。
但当我用int()定义age后,又出现假设用户需要输入'quit'时产生的字符串类型,求大神给解答一下~
搜索更多相关主题的帖子: int str age price print 
2019-07-22 15:33
aa2820981
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2019-7-16
得分:0 
回复 2楼 wp231957
一语道破天机,谢谢,明白啦
2019-07-23 08:59



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-495984-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.199147 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved