Question 5 Which of the following will display this result? B = 66 Question 6 To
ID: 3913121 • Letter: Q
Question
Question 5
Which of the following will display this result?
B = 66
Question 6
To create a datetime object for the current date and time, you can use the
Question 7
To create a datetime object by parsing a string, you can use the
Flag this Question
Question 8
To format a datetime object for the current date and time, you can use the
Flag this Question
Question 9
To store just the year, month, and day for a date, you use a
Flag this Question
Question 10
To work with dates, you need to import
print("B = ", char("B"))Explanation / Answer
5. print("B = ", ord("B")) will print the output B=66
The ord() function returns the number representing the unicode code(ASCII code) of a specified character. ASCII code of "B" is 66 , so the above statement will print B=66
6. To create a datetime object for the current date and time, you can use
today() method of the datetime class, or
now() method of the datetime class
today() and now() methods of the datetime class returns the current local data and time.
7. To create a datetime object by parsing a string, you can use the
strptime() method of the datetime class - returns a datetime corresponding to date_string, parsed according to format.
8. To format a datetime object for the current date and time, you can use the
strftime() method of the datetime object - Return a string representing the date and time, controlled by an explicit format string.
9. To store just the year, month, and day for a date, you use a date object , as date object represents a date (year, month and day) in an idealized calendar.
10. To work with dates, you need to import the date, time, and datetime classes from the datetime module which allows to manipulate dates and times
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.