I have searched for a few answers and none of them seems to work.
Below is an example but the code does not work and gives errors. I am using Python 2.7.
JavaScript
x
4
1
operationTwo = 91239
2
operationTwo = operationTwo[:-1]
3
print(operationTwo)
4
Advertisement
Answer
The code you found which is slicing
, works but not on integers
. If you want to use it you can convert the number to str
for slicing then convert it back to int
. It is not the best practice but it can be done as the following:
JavaScript
1
4
1
operationTwo = 91239
2
operationTwo = int(str(operationTwo)[:-1])
3
print(operationTwo)
4
I would however go with integer
division, like:
JavaScript
1
4
1
operationTwo = 91239
2
operationTwo = operationTwo // 10
3
print(operationTwo)
4