๐Ÿ PyQuest๐Ÿš€ First Steps ยท ๐Ÿช„ String Magic
โญ 0 XP๐Ÿ Python is waking upโ€ฆ

String Magic ๐Ÿช„

Text in Python is called a string. Strings have superpowers:

Glue them together with +:

first = "cup"
second = "cake"
print(first + second)     # โžœ cupcake

Repeat them with *:

print("ha" * 4)           # โžœ hahahaha

Your mission

  1. Make a variable sound with a short sound in it (like "boom" or "meow")
  2. Print your sound repeated 5 times using *

Your code

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