Computer Science, asked by Anonymous, 1 year ago

what is python language ?
And write a programme in python language .

To convert paisa into ruppe
and
ruppes into paisa
plz plz i really need it

Plz moderater give answer and excepting detailed answering.

●No spamming

Content quality answer

Answers

Answered by harsh8109086
1
Python is an interpreted high-level programming language for general-purpose programming. Created by Guido van Rossum and first released in 1991, Python has a design philosophy that emphasizes code readability, notably using significant whitespace.
Attachments:
Answered by DeVasu
0
Python is a Programming language with huge modern uses like in Machine learning((ML), Artificial Intelligence(AI) etc.

Python is superior to other language due to its readability, less use of braces, A huge Predefined library and it also uses whitespaces indentation for writing the program.


Program to convert paisa into rupee and vice-versa

a=input("Press A to convert Paisa into Rupee, Press B to convert Rupee into Paisa")
if a=='A':
        b=int(input("Enter the amount of Paisa"))
        c=b/100
        print(c)
elif a=='B':
        b=int(input("Enter the amount of Rupee"))
        c=b*100
        print(c)
else:
        print("Enter a valid choice")
Similar questions