mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
(cherry picked from commit 0c42984de25e97e748e719dccfe3657fc4eb79f1) IJ-CR-15473 GitOrigin-RevId: 93090f9d81d14009120682796c11862dbe9e3e98
10 lines
90 B
Python
10 lines
90 B
Python
lst = [1, 2, 3]
|
|
|
|
|
|
def test():
|
|
lst = ['a', 'b', 'c']
|
|
print(lst)
|
|
|
|
|
|
test()
|
|
print(lst) |