Question: I don't understand why the input is printing? Please help?? 19 #3 use an input() statement to ask the user for a player's first name

I don't understand why the input is printing? Please help?? 19 #3use an input() statement to ask the user for a player's firstI don't understand why the input is printing? Please help??

19 #3 use an input() statement to ask the user for a player's first name and assign it to the variable name f 20 # use an input() statemetnt to ask the user for a player's last name and assign it to the variable i 21 # display the following statement using the user's inputs: 22 # Jersey 23: [user entered first name] [user entered last name] 23 f=input('Enter players first name : ') 24 l=input('Enter players last name : ') 25 print("Jersey 23:",f,1) 26 27 #4 use an input() statement to ask the user for a player's first name and assign it to the variable name f 28 # use an input() statemetnt to ask the user for a player's last name and assign it to the variable 1 29 # display the following statement using the user's inputs: 30 # Position Forward: [user entered first name] [user entered last name] 31 f=input('Enter players first name : ') 32 l=input('Enter players last name : ') 33 print("Position Forward: ",f,1) Your output starts with Lebron James Jersey 23: Lebron James Kobe Bryant Jersey 8: Kobe Bryant Enter players first name Enter players first name : Enter players last name : Enter players last name : Jersey 23: Michael : Position Forward: Expected output starts with Lebron James Jersey 23: Lebron James Kobe Bryant Jersey 8: Kobe Bryant Jersey 23: Michael Jordan Position Forward: Larry Bird

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!