formations/algo/algofundoc/src/assignment.py

11 lines
116 B
Python

"""declare a variable add 5 to it and print its value"""
x = 4
# add 5 to this variable
x = x + 5
print(x)
# 9