Expressions:-
किसी Number को Process करने का सबसे Fundamental तरीका Expressions ही हैं जहां Python द्वारा विभिन्न प्रकार के Numbers व Operators के Combination मिलकर किसी Resultant Value को Compute करते हैं। Python में भी किसी अन्य Programming Language की तरह ही हम किसी Expression को Mathematical Notations व Operator Symbols का प्रयोग करते हुए लिखते हैं। जैसे-
12 + 23 * (12 – 5) / 12.5
ये एक Simple सा Python Expression है, जिसमें Specified विभिन्न Numbers, Mathematical Notation हैं और विभिन्न Symbols ( +, -, *, /) वे Operators हैं, जो इन Numbers पर किसी न किसी तरह का Operation Perform करके कोई Result Compute करते हैं।
Expressions:-
The most fundamental way to process a number is through Expressions, where combinations of different types of numbers and operators are used by Python to compute a Resultant Value. In Python, like any other programming language, we write any expression using Mathematical Notations and Operator Symbols. As-
12 + 23 * (12 – 5) / 12.5
This is a simple Python expression, in which various numbers are specified, mathematical notation and various symbols (+, -, *, /) are operators, which perform some kind of operation on these numbers and compute a result.