Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python program to convert unit

#program to convert paise to rs:
paise=int(input('enter paise: '))
rs=paise//100
paise=paise%100
print(rs,'rs',paise,'paise')
#output
enter paise: 621675
6216 rs 75 paise
Comment

PREVIOUS NEXT
Code Example
Python :: perimeter of circle 
Python :: keras callbacks learning rate scheduler 
Python :: seaborn countplot 
Python :: exec: "python": executable file not found in $PATH Error compiling for board ESP32 Dev Module. 
Python :: count unique values pandas 
Python :: pygame.rect 
Python :: python unzip list of tuples 
Python :: pyspark left join 
Python :: how to earse special chrat¥cter from string in python 
Python :: how to add vertical line on subplot in matplotlib 
Python :: stop program python 
Python :: list tuples and dictionary in python 
Python :: jupyter markdown new line 
Python :: python - remove columns with same name and keep first 
Python :: how to make a venv python 
Python :: subprocess.check_output python 
Python :: override python print for class 
Python :: tkinter widget span multiple colums 
Python :: python closure 
Python :: matplotlib bar label 
Python :: python opencv imresize 
Python :: django month name from month number 
Python :: sieve of eratosthenes python 
Python :: How to scale a pandas dataframe 
Python :: find unique char in string python 
Python :: print last exceuted query python 
Python :: python binary remove 0b 
Python :: find max length in string in pandas dataframe 
Python :: python multiline string 
Python :: return count of substring in a string 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =