mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-04 22:27:37 +00:00
7 lines
99 B
Python
7 lines
99 B
Python
prices = [100 ,200 ,300]
|
|
|
|
prices[0] = 222
|
|
|
|
print(prices[0])
|
|
print(prices[1])
|
|
print(prices[2]) |