Online Python - IDE, Editor, Compiler, Interpreter 3
Online Python - IDE, Editor, Compiler, Interpreter 3
main.py +
1
2
3 def sum(a, b):
4 return (a + b)
5
6 a = int(input('Enter 1st number: '))
7 b = int(input('Enter 2nd number: '))
8
9 print(f'Sum of {a} and {b} is {sum(a, b)}')
10
About Python
Python, which was initially developed by Guido van Rossum and made available to the public in 1991, is currently one of the most widely used
general-purpose programming languages. Python's source code is freely available to the public, and its usage and distribution are unrestricted,
including for commercial purposes. It is widely used for web development, and using it, practically anything can be created, including mobile
apps, online apps, tools, data analytics, machine learning, and so on. It is intended to be straightforward and uncomplicated, much like the
English language. When compared to other programming languages such as C++, Java, and C#, it is a lot simpler to read and write Python
programs. Because of its excellent productivity and e!iciency, it has become a very popular choice for use as a programming language.
To learn more about Python check out some of the following links.
python.org
Wikipedia - Python
w3schools.com - Python Tutorial
programiz.com - Python Tutorial
Feedback