Finance के लिए Python परिचय
Adina Howe
Professor



$$

| Operator | अर्थ |
|---|---|
| + | जोड़ |
| - | घटाना |
| * | गुणा |
| / | भाग |
| % | मोड्यूलस (भाग का शेष) |
| ** | घात |
# Print the sum of 8 and 4
print(8 + 4)
12
# Print 8 divided by 4
print(8 / 4)
2
print() का स्पष्ट रूप से उपयोग करें# Print 8 divided by 2
print(8 / 2)
# Print 2 raised to the power of 2
print(2**2)
# Print 1.0 add 0.10
print(1.0 + 0.10)
Finance के लिए Python परिचय