Answers for "Write a program that reads an integer value between 1 and 12 in python"

0

Write a program that reads an integer value between 1 and 12 in python

n = 12 # 'n' is a number
n += 1 # '+=' means that 'n' is equal the old 'n' + the number on the right. the number on the right can be any number
print(n)
Posted by: Guest on December-20-2020

Code answers related to "Write a program that reads an integer value between 1 and 12 in python"

Python Answers by Framework

Browse Popular Code Answers by Language