I th8nk she should use a source code editor.
<span>C. out one level. i hope this helps</span>
The missing line of code to have the following output is console log ("\'hi").
<h3>What are codes?</h3>
Codes are the rules in an information system that converts the information such as image, text from communication language to other language that is secret and only can understand by the system.
Thus, the missing line of code to have the following output is console log ("\'hi").
Learn more about codes
brainly.com/question/17293834
#SPJ1
Answer:
Enter time 1 HH:MM:SS8:5:22
Enter time 2 HH:MM:SS7:24:37
0:40:45
Explanation:
The program for above in Python is:
from datetime import datetime
s1 = input("Enter time 1 HH:MM:SS")
s2 = input("Enter time 2 HH:MM:SS")
Format1 = '%H:%M:%S'
tdiff = datetime.strptime(s1, Format1) - datetime.strptime(s2, Format1)
print(tdiff)
We are using the datetime class in datetime module for using strptime to find the difference between the two times.
Answer:
for i in range(1,10): print("{}.".format(i))
Explanation:
here's a one liner that does what you need.