pages-mirror/list-.py

7 lines
99 B
Python
Raw Normal View History

2026-05-11 10:03:54 +05:30
prices = [100 ,200 ,300]
prices[0] = 222
print(prices[0])
print(prices[1])
print(prices[2])