I want to align and organized data on Output. I have an excel file which has 2 sheets - Students
, Anime
. I already extracted data on excel files but my problem now is the output. This is what i've tried
file = pd.read_excel("src/doc/x1/students.xlsx", sheet_name=None)
print(file)
Output:
{'Students': Name Major Block
0 Alex Business 20200525
1 Clay Engineering 20200526
2 Justine Science 20200527, 'Anime': Anime Name Author
0 One Piece Eiichiro Oda
1 Naruto Masashi Kishomoto
2 Dragon Balls Akira Toriyama}
How do I remove the Brackets on each end and align data like this
'Students': Name Major Block
0 Alex Business 20200525
1 Clay Engineering 20200526
2 Justine Science 20200527
'Anime': Anime Name Author
0 One Piece Eiichiro Oda
1 Naruto Masashi Kishomoto
2 Dragon Balls Akira Toriyama