I have a list of tweet id(with none values) in an excel file
ID
1258125182063050753
1233371388620263429
1237667024618258432
1225204912755179521
nan
nan
When I try to load the excel file in Pandas datagram, I convert the string column in interfere using
df['ID']=df['ID'].apply(np.int64)
I am getting the values as
1258125182063050752
1233371388620263424
1237667024618258432
1225204912755179520
0
0
The conversion of string to integer changes the numeric values. How can I rectify the issue?