Python
Python is a high-level, interpreted, and general-purpose programming language known for its simplicity and readability.
-
- Python emphasizes code readability and has a clear and expressive syntax that makes it an ideal choice for beginners and experienced programmers alike.
- It supports multiple programming paradigms, including procedural, object-oriented, and functional programming.
Python
# Simple arithmetic operations
x = 10
y = 5
sum = x + y
difference = x - y
product = x * y
quotient = x / y
print("Sum:", sum)
print("Difference:", difference)
print("Product:", product)
print("Quotient:", quotient)