Replies: 1 comment 8 replies
-
Can you provide a small example file that you use for input? or describe its contents. Hard to offer suggestions without reproducing your exact usecase. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I have a file that I am r.eading where one of the columns has values in scientific notation. like 4.503021124e+10, My goal is to output this file I am reading as a CSV.
I have tried using.
I basically want :
4.503021124e+10 to look like 45030211240
However, this gives me an error saying
int()
does not take anExpression
which makes sense. Any help is greatly appreciated. Thank you.Beta Was this translation helpful? Give feedback.
All reactions