Computer Science, asked by yash272714, 11 months ago

write a program in python to input a number from the user and print the number after remove all zero digit​

Answers

Answered by akshayamca14
1

Answer:

number=input()

print(number.strip("0"))

Explanation:

Similar questions