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.
<span>Would you expect all the devices listed in bios setup to also be listed in device manager? = Yes
Would you expect all devices listed in device manager to also be listed in bios setup? = No, the BIOS doesn't know anything about your peripherals etc. that is all managed by the OS.</span>
Answer:
B-Everything you put online is available forever. Messages or photos will never be permanently deleted from memory cards on cameras or cell phones.
Answer:
Explanation:
Ok, I don't understand anything at the end because it's utter gibberish.
What you can do, based on the question, is ask user input for the two x and two y coordinates, then use the distance formula. The distance is
Find a way to insert that using the math library.
Hope that helped,
-FruDe
A clickable text or image that takes you to a different site is called a Hyperlink or simply a Link.