# How to use Markdown
1. To make headings use #-#### plus a space plus text
2. To make a numbered lise use 1. plus space plus text
3. To make a bullet-pointed list use * plus space plus text
4. To make bold/italic ***use*** _**
---
| Hannah | Tobias | Tyler |
| ------ | ------ | ----- |
| F | M | M |
---

---
```htmlembedded=
<iframe height="600px" width="100%"
src="https://replit.com/@missPunter/pythonfunction?lite=true"
scrolling="no" frameborder="no" allowtransparency="true"
allowfullscreen="true" sandbox="allow-forms allow-pointer-lock
allow-popups allow-same-origin allow-scripts allow-modals">
</iframe>
```
---
###### THIS is the embed you need to stick replit into your presentation 👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻👇🏻:
<iframe height="600px" width="100%" src="https://replit.com/@missPunter/pythonfunction?lite=true" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>
---
```python=
def be_ageist(age):
if age<16:
return "Too young and annoying"
elif age<25:
return "Still too young"
elif age<35:
return "Getting on a bit"
else:
return "Oldie"
print(be_ageist(12))
```
---
```python=
def ternary_try(num):
return "ha!" if num > 1 else "na"
ternary_try(5)
```
{"metaMigratedAt":"2023-06-16T07:20:29.703Z","metaMigratedFrom":"Content","title":"How to use Markdown","breaks":true,"contributors":"[{\"id\":\"0f7a35ec-f2b1-4089-943c-17d8603eb062\",\"add\":1602,\"del\":177}]"}