Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Variables | The basics
Learn Python from Scratch

book
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!

Tarefa

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"

Solução

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")

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 3
___ = '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")
toggle bottom row
some-alt