Just a sec

Report a typo

Correct the given program so it would print the second sentence 10 seconds after the first one.

Sample Input 1:

Sample Output 1:

I'm the first sentence.
And I'm the second sentence.
Write a program in Python 3
import time

sent_1 = "I'm the first sentence."
print(sent_1)

# write your code here

sent_2 = "And I'm the second sentence."
print(sent_2)
___

Create a free account to access the full topic