Question: in python 1. Try the code below and revise it to current time. import sys for line in sys.stdin: data = line.strip().split(t) if len(data) ==
in python
1. Try the code below and revise it to current time.
| import sys | |
| for line in sys.stdin: | |
| data = line.strip().split("\t") | |
| if len(data) == 6: | |
| date, time, store, item, cost, payment = data | |
| print "{0}\t{1}".format(item, cost) |
2. Add the timedelta to the datetime and subtract 60 second and added 2 year . (Hit: timedelta(seconds=60)) For each condition, state the code and output.
- from datetime import timedelta
- #Add 1 day
3. Create a timedelta object representing 100 days, 10 hours, and 13 minutes.
>>> from datetime import timedelta >>> d = timedelta(microseconds=-1) >>> (d.days, d.seconds, d.microseconds) (-1, 86399, 999999)
4. Write a function that takes two arguments (feet and inches) with this time object
from datetime import datetime # get current date >>>datetime_object = datetime.now() >>>print(datetime_object) >>> print('Type :- ',type(datetime_object)) Add function that takes two argument
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
