Question: Using a Python environment of your choice, complete python programs - 1. Implement a function that will - o Ask user for three first names

 Using a Python environment of your choice, complete python programs -

Using a Python environment of your choice, complete python programs - 1. Implement a function that will - o Ask user for three first names o Ask user for three last names o Create a new list of names (first + name) o Here is a 2 x 2 example First names? Gary, Andrew # user enters all first names in one input statement, including the comma Last names? Bush, Johnson # user enters all first names in one input statement, including the comma Output: First names: ['Gary', 'Andrew'] # a Python list of names Last names: ['Bush', 'Johnson'] Full names: ['Gary Bush', 'Andrew Bush', 'Gary Johnson', 'Andrew Johnson'] You are learning Python list processing here

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!