19 lines
492 B
Python
19 lines
492 B
Python
|
# Concatenación de strings
|
||
|
# Entradas de texto
|
||
|
|
||
|
youtuber = "Kylie Ying"
|
||
|
print("suscribe to " + youtuber)
|
||
|
print("suscribe to {}".format(youtuber))
|
||
|
print(f"suscribe to {youtuber}")
|
||
|
|
||
|
adj = input("Adjetivo: ")
|
||
|
verb1 = input("Verbo: ")
|
||
|
verb2 = input("Verbo: ")
|
||
|
persona_famosa = input("Famoso: ")
|
||
|
|
||
|
madlib = f"La programación es tan {adj}! Es emocionante todo el tiempo \
|
||
|
porque me encanta {verb1}, Mantenerse hidratado y {verb2} como \
|
||
|
si fueras {persona_famosa}!"
|
||
|
|
||
|
print(madlib)
|