Nauč se Python > Materiály > Snake Workshop for PyLadies > Introduction to Python > Lists

Lists – Řešení [5]

>>> name = 'Růžena'
>>> name[:-1] + 'y'
'Růženy'
>>> name = 'Krystýna'
>>> name[:-1] + 'y'
'Krystýny'

Toto je stránka lekce z kurzu, který probíhá nebo proběhl naživo s instruktorem.