lnu język python zmienne i stringi

Odpowiedź:
Wersja dla bystrzachów
actor1 = "clint eastwood"
actor2 = "bee vang"
actor3 = "scott eastwood"
list = [actor1.title(), actor2.title(), actor3.title()]
print("Grand Torrino cast: " + ", ".join(list) + ".")
Wersja dla słabszych
actor1 = "clint eastwood"
actor2 = "bee vang"
actor3 = "scott eastwood"
print("Grand Torrino cast: " + actor1.title() + ", " + actor2.title() + ", " + actor3.title() + ".")
Wyjaśnienie: