def list_demo () : my_list = [64, 'hello', 105.7, '', [0,1,2], False] print('la. ', my_list[2:4]) print('lb. my_list[3] = True print('lc. ', my_list) print('ld. ', my_list[-1]) my_list.append (True) print('le. ', len(my_list)) print('lf. ', my_list[4:6] + ['2014/11/06', 5]) my_list.extend ('2014/11/06'.split('/')) print('lg. ', len(my_list)) my_list = my_list + [105.7, False, list('abc'), my_list.remove(105.7) print('lh. ', my_list) print('li. ', len(my_list)) print('lj. ', my_list.index (True)) , my_list[4] [2])

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
icon
Related questions
Question

1. LIST (the values are represented in [ ]).

Step 1

Predict the output of this code. Write down what each line does. Make sure you number each line with your answer. Don’t worry about making mistakes, it is part of the learning process. Don’t run the code yet. 
 

Step 2

Type the code into a file named task01.py. Run the code. Attach a screenshot of your code and answer. 
 

Step 3

Explain any discrepancies between your predictions and the actual output. Write down where you made the mistakes and what you understood after obtaining the answer. Number the lines where the mistakes are made with your reasoning. 

NOTE:

i need all declearation and write proper Explain .

Study this code:

def list_demo () :
my_list = [64, 'hello', 105.7, '', [0,1,2], False]
print('la. ', my_list[2:4])
print('lb. ', my_list[4] [2])
my_list[3] = True
print('lc. ', my_list)
print('1d. ', my_list[-1])
my_list.append (True)
print('le. ', len(my_list))
print('lf. ', my_list[4:6] + ['2014/11/06', 5])
my_list.extend (' 2014/11/06'.split('/'))
print('1g. ',
my_list = my_list + [105.7, False, list('abc'), '"]
my_list.remove(105.7)
print('lh. ', my_list)
print('li. ', len(my_list))
print('lj. ', my_list.index(True))
%3D
len (my_list))
Transcribed Image Text:def list_demo () : my_list = [64, 'hello', 105.7, '', [0,1,2], False] print('la. ', my_list[2:4]) print('lb. ', my_list[4] [2]) my_list[3] = True print('lc. ', my_list) print('1d. ', my_list[-1]) my_list.append (True) print('le. ', len(my_list)) print('lf. ', my_list[4:6] + ['2014/11/06', 5]) my_list.extend (' 2014/11/06'.split('/')) print('1g. ', my_list = my_list + [105.7, False, list('abc'), '"] my_list.remove(105.7) print('lh. ', my_list) print('li. ', len(my_list)) print('lj. ', my_list.index(True)) %3D len (my_list))
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
List
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education