Self Reference in Python
📖 Scenario: Imagine you are creating a simple program to represent a person who can introduce themselves by name.
🎯 Goal: You will build a small program where a variable refers to itself to print a self-introduction message.
📋 What You'll Learn
Create a variable with a person's name
Create a variable that holds a message referencing the name variable
Use self reference to build the message
Print the final self-introduction message
💡 Why This Matters
🌍 Real World
Self reference is useful when you want to build messages or data that depend on existing variables, like user profiles or personalized greetings.
💼 Career
Understanding how variables can refer to themselves or be used inside functions is a basic skill for programming jobs involving data handling and user interaction.
Progress0 / 4 steps