initiate_world_dominance()
def countdown(n):
while n > 0:
print(n)
n = n - 1
print("It has started...")
def main():
# initiate world dominance
countdown(10)
if __name__ == "__main__":
main()
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
def countdown(n):
while n > 0:
print(n)
n = n - 1
print("It has started...")
def main():
# initiate world dominance
countdown(10)
if __name__ == "__main__":
main()
Recommended Comments