কমেন্ট ও ডক স্ট্রিং
# few variables below
x = 10
y = 5
# make sum of the above two variables
# and store the result in z
z = x + y
print(z) # print the result
# print (x // y)
# another commentdef greet(word):
"""
Print a word with an
exclamation mark following it.
"""
print(word + "!")
greet("Hello World")Last updated