0
How can desined reverse number?
6 odpowiedzi
+ 9
x = 123456
y = int(str(x)[::-1])
print(x, y)
>>>
123456 654321
+ 5
No problem. BTW, I see your answer thrice, maybe some connection bug?
0
how right this code with ring?
0
thank you for answer
0
thank you for answer
0
I dont understand