What will be the output of the following code:
import pandas as pd
x = ['Test', 'Book']
df = pd.DataFrame(x)
print(df)
1
2
3
4
Error
What will be the output of the following code:
import pandas as pd
x = ['Test', 'Book']
df = pd.DataFrame(x)
print(df)