We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a87f2f6 commit cfdb165Copy full SHA for cfdb165
1 file changed
docs/roteiro3/main.md
@@ -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