write a program in python to input a number from the user and print the number after remove all zero digit
Answers
Answered by
1
Answer:
number=input()
print(number.strip("0"))
Explanation:
Similar questions