Skip to content
Snippets Groups Projects
L14T04.py 222 B
Newer Older
AB6912's avatar
AB6912 committed
textList = ["Teksti1", "Teksti2", "Teksti3", "Teksti4", "Teksti5"]
index = int(input("Mihin kohtaa listaa haluat syöttää tekstin? "))
newText = (input("Syötä teksti: "))
textList.insert(index, newText)
print(textList)