Question: Three strings are read from input and stored in the list course _ list. Then, two more strings are read from input and stored in

Three strings are read from input and stored in the list course_list. Then, two more strings are read from input and stored in the list new_courses. Create a new list called updated_courses that contains the elements of course_list and new_courses, in that order.
- Click here for example
Ex: If the input is:
```
History Music Databases
Algebra Graphics
then the output is:
My courses: ['History', 'Music', 'Databases', 'Algebra', 'Graphics']
```
```
course_list = input().split()
new_courses = input().split()
|''' Your code goes here '''
print(f'My courses: {updated_courses}')
```
Three strings are read from input and stored in

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