私はプログラミングが初めてで、最初の言語として Python を選びました。簡単だからです。しかし、私はここでこのコードと混同しています:
option = 1
while option != 0:
print "/n/n/n************MENU************" #Make a menu
print "1. Add numbers"
print "2. Find perimeter and area of a rectangle"
print "0. Forget it!"
print "*" * 28
option = input("Please make a selection: ") #Prompt user for a selection
if option == 1: #If option is 1, get input and calculate
firstnumber = input("Enter 1st number: ")
secondnumber = input("Enter 2nd number: ")
add = firstnumber + secondnumber
print firstnumber, "added to", secondnumber, "equals", add #show results
elif option == 2: #If option is 2, get input and calculate
length = input("Enter length: ")
width = input("Enter width: ")
perimeter = length * 2 + width * 2
area = length * width
print "The perimeter of your rectangle is", perimeter #show results
print "The area of your rectangle is", area
else: #if the input is anything else its not valid
print "That is not a valid option!"
わかりましたわかりましたOption
変数の下のすべてのものを取得します。Option=1
の値を割り当てた理由、プログラムの先頭に追加した理由、およびその機能を知りたいだけです。また、その値を変更することもできます。プログラミング初心者なので分かりやすい言葉で教えてください。