listes globales Python

global list1
list1 = ["a", "b", "c"]


def update_list(listname):
    del listname[1:2]

update_list(list1)
Hypixel Offical