I have a point feature and a table that I need to join based on parcel ID. I need to make the parcel IDs both ints or strings. These are fairly small and simple files, but I am not able to cast to int, or remove a .0 that appears at the end if I cast to string. Is there a simple fix to this? Please and thanks.
.0 added at the end.
I'm not sure how this was created, but removing the last 2 characters doesn't seem to be possible.
Please help.
Solved! Go to Solution.
a = 123456789.0
str(int(a))
'123456789'
int or round, then str
a = 123456789.0
str(int(a))
'123456789'
int or round, then str
That worked. Thank you.