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 - 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
Get step-by-step solutions from verified subject matter experts
