Added Basic Python Example

This commit is contained in:
Manan Jain 2026-03-30 00:53:17 +05:30
parent e1cf4d2a19
commit 7e3ecd09c0

View File

@ -148,6 +148,16 @@ __ERROR:
return 1; return 1;
} }
``` ```
## Basic Python Usage Example
Here is a simple example demonstrating Python execution in PocketPy:
```python
print("Hello from PocketPy!")
for i in range(3):
print(i)
```
## Features ## Features