How to refer variables to the same list in one line with Python

2 Answers

0 votes
a = b = [1, 2, 3, 4]

print(a)
print(b)


'''
run:

[1, 2, 3, 4]
[1, 2, 3, 4]

'''

 



answered Sep 19, 2017 by avibootz
0 votes
a = b = [1, 2, 3, 4]

print(a)

b[0] = 9

print(b)


'''
run:

[1, 2, 3, 4]
[9, 2, 3, 4]

'''

 



answered Sep 19, 2017 by avibootz
...