2016-10-08 20 views
-5
first_num = raw input ("Please input first number. ") 
sec_num = raw input (" Please input second number:") 
answer = into(first_num) +into(sec_num) 

print " Now I will add your two numbers : ", answer 

print " Pretty cool. huh ? 
print " Now I'll count backwards from ",answer 

counter = answer 
while (counter >=0): 
    print counter 
    counter = counter-1 
print " All done !" 

私はコマンドの最初の半分は合計を得るために第1と第2の数値を追加すると思います。後半はコマンドを開始またはゼロに戻すことです。私はPython言語を知らない。Pythonコード:説明してください

+0

ここで質問は何ですか? –

答えて

1

おそらく最初にコードを実行し、それを理解して再生するようにしてください。コードは単純です。最初の半分は2つのユーザー入力を取り、それらをお互いに追加して結果を表示します。

first_num = input("Please input first number:") # get first number input 
sec_num = input("Please input second number:") # get second number input 
answer = int(first_num) +int(sec_num)   # add up int values of the numbers 
print(" Now I will add your two numbers : ", answer) # display answer 

それがゼロ

print("Now I'll count backwards from ", answer) 
counter = answer   # set counter start value 
while(counter >=0):   
    print(counter)  # display counter value on each iteration 
    counter = counter-1 # decrement counter value on each iteration 
print(" All done !) 

まで下方への対抗、そこから数をとり下期については、私はあなたのラインが少し厄介といくつか間違っていましたあなたのコードの原因を変更しました。私のこのバージョンはpython3とではなく、 python2.7で動作します。あなたがPythonを学びたいなら、私はあなたがcode academy python tutorialから始めることをお勧めします

+0

Thx you da man。私は投稿でいくつかのprobsを持っていた。シーケンスが異常終了しました。再度、感謝します –

関連する問題