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 graphics program that has 2 fields to enter the number and 4 buttons for subtraction, multiplication and division. By selecting each button, the relevant calculations should be done on the 2 numbers entered and the result is displayed.
Write a program that receives 2 dates in yyyy/mm/dd format and print 2 dates to the output for example Tarikh1: 1401/11/01 tarikh2: 1401/11/05 4 days Tarikh1: 1401/10/01 Tarikh2: 1401/11/05 34 Days
Online Store with the following features to add new product by Admin in the Management Panel Panel User Name by User Selecting and Registering (Online Payment and Home Payment Option ...
Using HTML and CSS, insert an image with the following features on the page.
Create a list and display the following on the screen. Next to each item must be automatically placed.
برای استفاده از این بخش باید وارد حساب کاربریت بشی
ورود/ثبت نام 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.