Python-exercises/functions.py

20 lines
263 B
Python

# sky = "cloudy"
# def my_function():
# if sky == "clear":
# print("blue")
# elif sky == "cloudy":
# print("grey")
# print("Hello")
# print("Bye")
# my_function()
number = 0
while number < 100:
number += 1
print(number)