formations/algo/algofundoc/src/assignment.py

11 lines
116 B
Python
Raw Normal View History

2018-08-24 14:09:11 +02:00
"""declare a variable add 5 to it and print its value"""
x = 4
# add 5 to this variable
x = x + 5
print(x)
# 9