please make a program that prints Wednesday | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

please make a program that prints Wednesday

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

9th Feb 2023, 6:46 PM
Ararat Gasparyan
Ararat Gasparyan - avatar
4 Answers
+ 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
I don't know for which coding language you want it but by looking at your profile i can guess your talking about python (please specify in question next time and try to use tags correctly) All you need to do to print wednesday is to run the following code line in python: print("Wednesday") Yeah that's it... i feel like that there is more to your question...? Idk please show more details about the problem next time and maybe even show us your attempt.
9th Feb 2023, 7:09 PM
Dronto
Dronto - 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