Which of the following statements is used to display a user-inputted message followed by a new line?
print(input("Enter message: "))
input(print("Enter message: "))
print("Enter message: " + input())
print("Enter message: ", input())
This question is part of this quiz :
Python Input Output