Skip to content

Latest commit

 

History

History
69 lines (45 loc) · 1.6 KB

File metadata and controls

69 lines (45 loc) · 1.6 KB

Add your first instructions

--- task ---

Use print() to show the first two steps for your recipe.

--- /task ---

Set the scene

Your disgusting dish needs some instructions so the chef knows how to prepare it.
Use print() again to add numbered steps. Start with two steps.

Each step should be on its own line. Use numbers followed by a full stop to show the order.

--- code --- --- language: python filename: main.py line_numbers: true line_number_start: 10 line_highlights: 10-12 ---

print('🧪 Instructions:') print('1. Mix the toenails and eggs in a dirty sock.') print('2. Sprinkle in the belly button fluff.')

--- /code ---

🤢 Welcome to the DISGUSTING DISHES cookbook! 🤮

🧠 Ingredients:

  • 1 cup of toenail clippings 🦶
  • 2 rotten eggs 🥚
  • A handful of belly button fluff 🤏
  • 3 eyeballs 👁️👁️👁️
  • Green slime to taste 🧪

🧪 Instructions:

  1. Mix the toenails and eggs in a dirty sock.
  2. Sprinkle in the belly button fluff.

Tip

You can change the instructions to match your own ingredients!
Make them as weird and disgusting as you like. 🧪🧦👅

Debugging

  • Did you remember to use quotes and print()?
  • Make sure your numbers have a full stop after them
  • Each step should be a new print() line