EMT 1111 Lab 2

x = [1, 2, 3] # a different [1, 2, 3]
y = x
x.append
y.append
z = [1]
x.append(6)
y.append(7)
y = “hello” _Error

Description – This section of Python emphasizes readibility of codes, and syntax. It allows programmers to express concepts in fewer lines than would be possible in languages. It provides structures intended to enable clear programs. Python supports multiple programs and It features a dynamic types of system and memory management and has a large standard library.

Leave a Reply

Your email address will not be published. Required fields are marked *