Saturday, March 2, 2019

Roundup Value - Python3

ip=int(input('Enter the value to round up: '))
a=ip%100
x=ip-a
print('Original value: ',ip)
print('Replaced value: ',x)

ScreenShot:



No comments:

Post a Comment