Computer Science, asked by pareekadrita, 3 months ago

Write the output of the following

import pandas as pd

f1=pd.DataFrame([5,6,7])

f2=pd.DataFrame([5,6,7],index=[‘five’,’six’,’seven’])

print("Frame 1")

print(f1)

print("Frame 2")

print(f2​

Answers

Answered by smiley2376
2

Answer:

Frame 1

0

0. 5

1. 6

2. 7

Frame 2

0

five. 5

six. 6

seven 7

Similar questions