Jak dodać dodatkowy strI w Python? Phython, dodaj, dołącz, wstaw
shop = ["Juice", "Milkshake", "Coffe"]
shop.append("Cup cakes")
for x in shop:
print(x)
YEASIN ARAFAT
shop = ["Juice", "Milkshake", "Coffe"]
shop.append("Cup cakes")
for x in shop:
print(x)