Answer:
with the power button or do the sleep or shut down
and by the type of computer
Explanation:
sry if its wrong
have a good day:)
-XxMissNobodyxX
Hey dude don't leave tell a mod bout it they'll fix everything up for you.
Answer:
import datetime
user = input("Enter date in yyyy,m,d: ").split(",")
int_date = tuple([int(x) for x in user])
year, month, day =int_date
mydate = datetime.datetime(year, month, day)
print(mydate)
x = mydate.strftime("%B %d, %Y was a %A")
print(x)
Explanation:
The datetime python module is used to create date and time objects which makes it easy working with date-time values. The user input is converted to a tuple of integer items, then they are converted to date time objects and parsed to string with the strftime method.
Computational thinking inclines invokes the techniques of decomposition, latter reconstruction, abstraction & algorithms development