Please Answer this ques with showing the answer in python ( there is only 1 ques with 2 steps) Step 1: Using the list from this ques : Create this list of pets: ['teddy', 'polly', ‘jessie’, 'ghost'] Be sure to refer to the list element by its index Write the python statement whose output is: Output : Hello POLLY, you are a fine parrot! Write a python statement to add 'spot' to the list between 'teddy' and 'polly'. Print the updated list Output: ['teddy', 'spot', 'polly', 'jessie', 'ghost'] step 2: Using the updated list from the step 1 Use slicing (start,stop,step) to copy the elements ‘teddy’ and ‘jessie’ to a new list, pets_in_heaven. Print pets_in_heaven Output: ['teddy', 'jessie']
Please Answer this ques with showing the answer in python ( there is only 1 ques with 2 steps) Step 1: Using the list from this ques : Create this list of pets: ['teddy', 'polly', ‘jessie’, 'ghost'] Be sure to refer to the list element by its index Write the python statement whose output is: Output : Hello POLLY, you are a fine parrot! Write a python statement to add 'spot' to the list between 'teddy' and 'polly'. Print the updated list Output: ['teddy', 'spot', 'polly', 'jessie', 'ghost'] step 2: Using the updated list from the step 1 Use slicing (start,stop,step) to copy the elements ‘teddy’ and ‘jessie’ to a new list, pets_in_heaven. Print pets_in_heaven Output: ['teddy', 'jessie']
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Please Answer this ques with showing the answer in python ( there is only 1 ques with 2 steps)
Step 1:
Using the list from this ques :
Create this list of pets: ['teddy', 'polly', ‘jessie’, 'ghost'] Be sure to refer to the list element by its index Write the python statement whose output is:
Output :
Hello POLLY, you are a fine parrot!
Write a python statement to add 'spot' to the list between 'teddy' and 'polly'. Print the updated list
Output:
['teddy', 'spot', 'polly', 'jessie', 'ghost']
step 2:
Using the updated list from the step 1
Use slicing (start,stop,step) to copy the elements ‘teddy’ and ‘jessie’ to a new list, pets_in_heaven. Print pets_in_heaven
Output:
['teddy', 'jessie']
Expert Solution
Introduction :
- First, we will create a list of "pets".
- Then we will print the statement.
- Then we will add an element to the list of "pets".
- Create a new list, "pets_in_heaven" and copy two elements from the list "pets" to this list.
Step by step
Solved in 4 steps with 2 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education