+ 2
How to delete the last digit in sequence of number?
how to delete last digit in one sequence of number?
5 Respostas
+ 9
Just a hint:
1347362247 // 10 == 134736224 ;)
+ 3
I don't know if I read your question right but try this:
a = [1,2,3]
del a[-1]
+ 3
print(int(str(123456789)[0:-1]))
+ 2
result: 12345678
0
thanks ji