0

please make a program that prints Wednesday

пожалуйста сделайте программу которая напечатает Уэнздей

9th Feb 2023, 6:46 PM
Ararat Gasparyan
Ararat Gasparyan - avatar
4 Réponses
+ 12
Ararat Gasparyan your questiom seems to be incomplete. the post should include: > the programming language (to be placed in tags) > a clear task description with input / output sample > a link that points to your code try > a description what exactly your issue is, (if possible including an error message)
10th Feb 2023, 11:22 AM
Lothar
Lothar - avatar
+ 3
In python print("Wednesday") You didn't tag the language you wanted and maybe you're missing more information for what you'd like. https://code.sololearn.com/W3uiji9X28C1/?ref=app
9th Feb 2023, 6:50 PM
Ausgrindtube
Ausgrindtube - avatar
+ 2
This will print on Wednesday only. import datetime as dt if dt.datetime.today().weekday()==3: print("Wednesday")
10th Feb 2023, 4:09 AM
Brian
Brian - avatar