--- task ---
Use print() to add a heading and the first ingredient to your recipe card.
--- /task ---
Your restaurant recipe card needs a list of ingredients for each recipe card.
Add a heading that shows this section is about ingredients.
Then add your first disgusting item — remember to use print() again and to include some emoji!
--- code ---
---
language: python
filename: main.py
line_numbers: true
line_number_start: 3
line_highlights: 3-4
---
print('🧠 Ingredients:') print(' - 1 cup of toenail clippings 🦶')
--- /code ---
🤢 Welcome to the DISGUSTING DISHES cookbook! 🤮🧠 Ingredients:
- 1 cup of toenail clippings 🦶
Start your ingredient lines with a dash - and a space, just like a real list.
You can change the ingredient to anything gross you like: 🧠 🦴 🐌
def greet(name):
print(f"hello {name}")
greet("world")when green flag clicked
move (10) steps
