comment inverser un nombre en python
num = 123456
print(str(num)[::-1])
sahil bhatt
num = 123456
print(str(num)[::-1])