System Timer Timer
Write a program that gets a numeric as a second (s) from the user and after S seconds pass the system
Write a program that gets a numeric as a second (s) from the user and after S seconds pass the system
import time import os import platform def shutdown_system(seconds): """سیستم را پس از گذشت s ثانیه خاموش میکند.""" print(f"سیستم پس از {seconds} ثانیه خاموش خواهد شد...") time.sleep(seconds) # Looking forward to staying for S second # Operating system review and executing the shutdown command if platform.system() == "Windows": os.system("shutdown /s /t 1") # Turn off in Windows elif platform.system() == "Linux" or platform.system() == "Darwin": os.system("shutdown now") # Off on Linux and Macos else: print("سیستم عامل پشتیبانی نمیشود.") def main(): try: seconds = int(input("لطفاً تعداد ثانیهها را وارد کنید: ")) if seconds < 0: print("لطفاً عددی مثبت وارد کنید.") return shutdown_system(seconds) except ValueError: print("لطفاً یک عدد صحیح وارد کنید.") if __name__ == "__main__": main()
import os x = os.system("shutdown /s /t 10") print(x)
The number of seconds must be received from the user
import platform import time import os def shutdown_system(s): print(f"please wait for shutdown system secend {s}") time.sleep(s) if platform.system() == 'Windows': os.system("shutdown /s /t 1") number = int(input("number_secend: ")) shutdown_system(number)
Submitting answers is currently unavailable.
Write a program that receives 2 numbers as the interval, in which the interval of all the 5 existing numbers. For example, in the interval of 1 to 20 the number 2 times the number 5 repeated (5 and 15)
Suppose we have the following 2 tables Users-> name, idbooks-> User_id, id, name 1- Write a query that shows user-related books at No. 2- Write a query to user names a ...
Write a program that receives students' scores and names and prints from the highest to the lowest score, respectively
Write a code that uploads a video with an address (test) on the page. There are video control buttons too
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام If you don’t understand the exercise or can’t solve it for any reason, that’s completely
normal—don’t worry 😊
Try checking out easier exercises and reviewing different answers
submitted by others. Gradually, you can move on to more challenging exercises. Also, your answer
might be correct even if it’s different from others.