title: TestPosts
featured_image: images/flower_4.jpg
- Test
- TestPost
# categories: -[gallery]
abbrlink: 33034
date: 2024-09-26 22:57:59
—
## Test Practices

### Test Table
| Name | Age | Gender |
| :–: | :-: | :—-: |
| John | 30 | Male |
| Jane | 28 | Female |
| Bob | 35 | Male |
### Test Code
````python
def add(a, b):
return a + b
print(add(1, 2))
print(add(3, 4))
print(add(5, 6))
return a + b
```
````