This app works best with JavaScript enabled.
few blocks
Account
About
Sign In
Jupyter
In [1]:
import
pandas
as
pd
In [8]:
h
=
list
(
range
(
1
,
5
))
In [12]:
df
=
pd
.
DataFrame
(
h
,
columns
=
[
'nums'
])
df
.
head
()
Out[12]:
nums
0
1
1
2
2
3
3
4
few blocks