Retype the statements, correcting the syntax error in each print statement. print('Predictions are hard.") print(Especially about the future.) user_num = 5 print('user_num is:' user_num)

Respuesta :

print(‘Predictions are hard’)
print(‘Especially about the future’)
user_num = 5
print(‘user_num is:’+str(user_num))

There are many ways to do the last print. Look up string interpolation

Answer:

print(‘Predictions are hard.’)

print(‘Especially about the future.’)

user_num = 5

print(‘user_num is: ’+str(user_num))

Explanation:

This is correct code