Computer Science, asked by purplediariesshop, 1 month ago

EngAlph, having 26 elements with the alphabets as values and default index values.​

Answers

Answered by vishnuprathapms11c2
7

Hi guys, I am new here so if there is any mistake please forgive me

Answer:

import pandas as pd

EngAlph=pd.Series(['a' , 'b' , 'c' , 'd' , 'e' , 'f' , 'g'])

print(EngAlph)

0 a

1 b

2 c

3 d

4 e

5 f

6 g

dtype: object

Similar questions