> This is a blockquote
>> Nested blockquoteprint("Hello, Obsidian!")# This is a Markdown exampleHeader 1 | Header 2 | Header 3 |
Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 |
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
| Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 |> [!note] This is a note
> Notes help to emphasize information
> [!tip] Tip
> Use callouts for better readability!- [ ] Task 1
- [x] Completed Task
- [ ] Task with **bold** textThis is an example of a footnote[^1].
[^1]: Here is the footnote content.
```python
import pandas as pd
data = {'Name': ['Alice', 'Bob', 'Charlie'], 'Age': [25, 30, 35]}
df = pd.DataFrame(data)
print(df)
numbers = [x**2 for x in range(10)]
print(numbers)
print("Hello, World!")
