I am brand new to programming. I have researched this error message and I am not sure what it means or how to solve the problem; does anyone have any insight for this error.
firstName=input('Enter your first name: ')
middleName=input('Enter your middle name: ')
lastName=input(firstName,middleName'enter your last name: ')
>>>
Enter your first name: Steve
Enter your middle name: Smith
>>>Error
Traceback (most recent call last):
File "C:\Users\Steve\Desktop\rps.py", line 3, in <module>
lastName=input(firstName,middleName,'Enter your last name: ')
TypeError: input expected at most 1 arguments, got 3
>>>