0

以下のコードを参照してください -

def add(a, b):
    print "ADDING %d + %d" % (a, b)
    return a + b

print "Let's do some math with just functions!"

age = add(float(raw_input("Add this:")), float(raw_input("To this:")))

とにかく、最後の行を短くすることはできますか? または、ユーザー入力を取得する別の方法はありますか?

ありがとう

4

2 に答える 2