# import the time module import time # define the countdown func. def countdown(t): while t: mins, secs = divmod(t, 60) timer = '{:02d}:{:02d}'.format(mins, secs) print(timer, end="\r") time.sleep(1) t -= 1 print('Happy Chinese New Year!') # input time in seconds t = input("Enter the time in seconds: ") # function call countdown(int(t)) Contact Us | LVACRC
top of page
Get in Touch

Thank you for your interest in reaching out to us! Whether you have questions, feedback, or need assistance, we're here to help. Please feel free to reach us through any of the following channels:

Call:

725-205-1205

Submit a Form

Thanks for submitting!

Visit Us:

1771 E Flamingo Rd Ste 113-A

Las Vegas, NV. 89109

  • Facebook
  • Instagram
  • X
  • LinkedIn
bottom of page