lista = ["tets","a"]
l2 = ["testowe"]

#lista.append(-6) #dodaj na koniec
#lista.extend(l2) #dodaj zbior/liste/slownik
#lista.insert(0,"4")#dodaj przed danym indexem
#lista.remove("t")#usuń dane value
#lista.pop(2) #usuń dany index
# id = lista.index("test",3,4) #return index(moze byc ->
# -> bez parametrowy lub jednoparametrowy)
# print(id)
#print(lista.count(1)) return ile value
#lista.sort(reverse=True) #odwracanie


print(lista)

