Python question | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

Python question

Write a Python statement that print the number of paisas in 700 rupees

24th Apr 2020, 7:10 AM
Mehwishch
Mehwishch - avatar
2 Answers
24th Apr 2020, 4:08 PM
Eddie 🇦🇲
Eddie 🇦🇲 - avatar
0
If I know right that 1 rupee is 100 paise, then this code will help you for any given number. rupee=int(input()) paise=100*rupee print(rupee,'rupee is equal to ',paise, 'paise')
24th Apr 2020, 4:10 PM
Eddie 🇦🇲
Eddie 🇦🇲 - avatar