Question: Prompt the user to enter three simple strings 2. Make a tuple from the values entered 3. Print the tuple 4. Prompt the user

Prompt the user to enter three simple strings 2. Make a tuple

Prompt the user to enter three simple strings 2. Make a tuple from the values entered 3. Print the tuple 4. Prompt the user for a fourth string 5. Using the existing tuple, make a new tuple with the fourth string on the end 6. Print the new tuple Outcome: Enter the first string: Gomer Enter the second string: this way Enter the third string: more information The first tuple is: ('Gomer', 'this way', 'more information') Enter the fourth string: final words The second tuple is: (*Gomer', 'this way', 'more information', 'final words') Guidelines: string Ask user for three strings Make the first tuple Print the first tuple Make a second tuple, using the first Your python file includes comments, describing your work Print the second tuple Ask the user for a fourth Your python program runs without errors.

Step by Step Solution

3.38 Rating (167 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Prompt the user to enter three strings string1inpu... View full answer

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 Programming Questions!