Computer Science, asked by dhiwarpranjal077, 3 months ago

6.
Import pandas as pd
data= [10,25,35,45,55)
df = pd.DataFrame(data)
print(df)
Write the output?​

Answers

Answered by hrithik2k
1

Answer:

0

0 10

1 25

2 35

3 45

4 55

Explanation:

Hope this helps

Similar questions