982 subscribers
47 photos
14 videos
53 files
18 links
Here we shares graphics based desktop applications built by using Python 3.x.
Get the source code for free! and share your knowledge and opinion.

"The Night is Productive as Creative Day Is!"

Language : ( Hindi + English ) only.

India
Download Telegram
Python
What is the output of this code?
a = [1, 2, 3]
b = a[:] a[0] = 100 b[1] = 200 print(a, b)
Code:

a = [1, 2, 3]
b = a[:]
a[0] = 100
b[1] = 200
print(a, b)
2