Skip to content

Commit cfdb165

Browse files
committed
pyodide
1 parent a87f2f6 commit cfdb165

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

docs/roteiro3/main.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
Running the code below in Browser (Woooooowwwwww!!!!!!). [^1]
3+
4+
5+
``` pyodide install="pandas,ssl"
6+
import ssl
7+
import pandas as pd
8+
9+
df = pd.DataFrame()
10+
df['AAPL'] = pd.Series([1, 2, 3])
11+
df['MSFT'] = pd.Series([4, 5, 6])
12+
df['GOOGL'] = pd.Series([7, 8, 9])
13+
14+
print(df)
15+
16+
```
17+
18+
[^1]: [Pyodide](https://pawamoy.github.io/markdown-exec/usage/pyodide/){target="_blank"}
19+

0 commit comments

Comments
 (0)