Challenge: About You
Python can remember information by storing it in variables.
A variable has:
a name
an equals sign (
=)a value (like text or a number)
Your task:
Store your name in a variable
Store your age in a variable
Print a sentence that uses both of them
💡 Hints:
Text (like a name) goes inside quotation marks
Numbers (like an age) do not
You can print multiple things at once by separating them with commas
When you click Run, Python should print a sentence about you.
Challenge: About You
Python can remember information by storing it in variables.
A variable has:
a name
an equals sign (
=)a value (like text or a number)
Your task:
Store your name in a variable
Store your age in a variable
Print a sentence that uses both of them
💡 Hints:
Text (like a name) goes inside quotation marks
Numbers (like an age) do not
You can print multiple things at once by separating them with commas
When you click Run, Python should print a sentence about you.