0
please make a program that prints Wednesday
пожалуйста сделайте программу которая напечатает Уэнздей
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)
+ 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
+ 2
This will print on Wednesday only.
import datetime as dt
if dt.datetime.today().weekday()==3:
print("Wednesday")