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 gets 3 numbers and prints the most in the output
Scissors Paper Play: 1- The user chooses one between paper or scissors. 2- Select the system by random. 3- With the choice of user and system, the result is displayed and the user's rating is calculated 4- ... ...
The program receives the amount of distance traveled to kilometers and the amount of fuel consumed in liter and prints according to the following instructions, whether the car is low or high. If the fuel consumption of this car is less than 7 liters ...
Write a function to get a string and return the length of the string Tip: In this exercise you should not use ready -made functions like Len in Python
You must be logged in to access this section.
Login/Sign up 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.