Jump to content
EN
Play

Forum

Coding101


 Share

Recommended Posts

Made a simple timer cause why not :P

 

 

import time

seconds_timer = 00
minutes_timer = 00

for i in range(9999999):
    if seconds_timer == 60:
        minutes_timer += 1
        seconds_timer = 0
    print("{}:{}".format(minutes_timer, seconds_timer))
    time.sleep(1)
    seconds_timer += 1
Make it complicated so it is harder to guess. You can do an

Easy

Medium

Hard

Ragging hard

You will cry impossible

Share this post


Link to post
Share on other sites

4FUTURE~Programming Group :P If you guys could suggest features you would like to see in a software on the forum would be Epic & Thanks :D

www.future4.tk/forum/

I go on khan academy :mellow:

Share this post


Link to post
Share on other sites

 Share

×
×
  • Create New...