-3

Guys please help to covert into the full int numbers this is a 16 digit numeric numbers

Here is Screenshot

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
  • 1
    Welcome 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 Answers1

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