Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given the user inputs, complete a python program that does the following tasks: 1 The Challenge Define a list, my list, containing the user inputs:

Given the user inputs, complete a python program that does the following tasks:
1 The Challenge
Define a list, my list, containing the user inputs: my flower1, my flower2,
and my flower3 in the same order.
Define a list, your list, containing the user inputs, your flower1 and your flower2,
in the same order.
Define a list, our list, by concatenating my list and your list.
Append the user input, their flower, to the end of our list.
Replace my flower2 in our list with their flower.
Remove the first occurrence of their flower from our list without using
index().
Remove the second element of our list.
2 Input
my flower1
my flower2
my flower3
your flower1
your flower2
their flower1 Output
Print result of our list by concatenating my list and your list
Print result of Append their flower to the end of our list
Print result of Replace my flower2 with their flower in our list
Print result of Remove the first occurrence of their flower from our list
Print result of Remove the second element of our flowers. The input is: rose, peony, lily, rose, daisy, aster (it needs to come out just like the output)
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions