IF语句错误新变量输入python

时间:2013-03-23 19:56:46

标签: python if-statement

这里的问题是我无法让python检查Currency1是否在字符串中,如果不是则打印出错误,但如果Currency1在字符串中,则继续前进并要求用户输入Currency2,然后再检查一下。

2 个答案:

答案 0 :(得分:1)

你实际上是在尝试:

if type(Currency1) in (float, int):
   ...

isinstance在这里更好:

if isinstance(Currency1,(float,int)):
   ...

甚至更好,您可以使用numbers.Number抽象基类:

import numbers
if isinstance(Currency1,numbers.Number):

虽然...... Currency1 = str(raw_input(...))将保证Currency1是一个字符串(不是整数或浮点数)。实际上,raw_input提供了保证,而这里的额外str只是多余的: - )。

如果你想要一个函数来检查字符串是否可以转换为数字,那么我认为最简单的方法就是尝试它并看看:

def is_float_or_int(s):
    try:
        float(s)
        return True
    except ValueError:
        return False

答案 1 :(得分:1)

您可以使用try-except

def get_currency(msg):
    curr = input(msg)
    try:
        float(curr)
        print('You must enter text. Numerical values are not accepted at this stage')
        return get_currency(msg)  #ask for input again
    except:
        return curr               #valid input, return the currency name

curr1=get_currency('Please enter the currency you would like to convert:')
curr2=get_currency('Please enter the currency you would like to convert into:')
ExRate = float(input('Please enter the exchange rate in the order of, 1 '+curr1+' = '+curr2)) 
Amount = float(input('Please enter the amount you would like to convert:'))
print (Amount*ExRate)

<强>输出:

$ python3 foo.py

Please enter the currency you would like to convert:123
You must enter text. Numerical values are not accepted at this stage
Please enter the currency you would like to convert:rupee
Please enter the currency you would like to convert into:100
You must enter text. Numerical values are not accepted at this stage
Please enter the currency you would like to convert into:dollar
Please enter the exchange rate in the order of, 1 rupee = dollar 50
Please enter the amount you would like to convert: 10
500.0