Variables
In the previous example you used something called variable (in that specific example the variable was called "person").
Variable is a reserved memory location to store value (stored value can be of various allowed types). You can assign variable once and print it (or otherwise manupulate it) as many times as you want later!
Tarea
Swipe to start coding
Analyze the code snippet on the right! Replace ___ symbols in line 1 with proper variable name (the one that used in the lines below) so that the program prints lyrics from Rick Astley's timeless hit "Never Gonna Give You Up"
Solución
9
1
2
3
4
5
6
7
text = 'Never gonna'
print(text, "give you up")
print(text, "let you down")
print(text, "run around and desert you")
print(text, "make you cry")
print(text, "say goodbye")
print(text, "tell a lie and hurt you")
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 1. Capítulo 3
single
9
1
2
3
4
5
6
7
___ = 'Never gonna'
print(text, "give you up")
print(text, "let you down")
print(text, "run around and desert you")
print(text, "make you cry")
print(text, "say goodbye")
print(text, "tell a lie and hurt you")
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla