๐Ÿ PyQuest๐Ÿš€ First Steps ยท ๐Ÿชช Mission: About Me Card
โญ 0 XP๐Ÿ Python is waking upโ€ฆ

Mission: About Me Card ๐Ÿชช

Time to combine everything from Unit 1 into one program!

You're going to build an "About Me" trading card that looks something like this:

==============================
       ABOUT ME CARD
==============================
Name: Maya
Age: 12
Favorite thing: drawing dragons
In 10 years I'll be 22!
==============================

Your mission

Build your own card! It must:

  1. Use at least 2 variables (like your name and age)
  2. Use = characters repeated with * to make the border lines (like "=" * 30)
  3. Use an f-string that does math: show how old you'll be in 10 years
  4. Print at least 5 lines total

Make it yours โ€” add extra lines, emoji, whatever you like!

Your code

Press โ–ถ Run to see what your code does!