Guys please help to covert into the full int numbers this is a 16 digit numeric numbers
Asked
Active
Viewed 153 times
-3
-
1Welcome to stack overflow! Unfortunately, this question is not detailed enough to give you any meaningful help. Please edit your question to include a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) for the issue, including sample input, preferred output, and code for what you've tried so far. – E. Zeytinci Jan 16 '20 at 10:11
1 Answers
0
Please see for example converting exponent or scientific number into integer in pandas python or How to display pandas DataFrame of floats using a format string for columns?.
I guess you want to do:
data['Serial No.'] = data['Serial No.'].astype(int)

Michaël
- 181
- 5