We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c3aa9e commit d43748cCopy full SHA for d43748c
operations.py
@@ -0,0 +1,11 @@
1
+def main():
2
+ a = 6
3
+ b = 3
4
+ print("Sum:", a + b)
5
+ print("Difference:", abs(a - b))
6
+ print("Product:", a * b)
7
+ print("Quotient:", a / b)
8
+
9
10
+if __name__ == "__main__":
11
+ main()
0 commit comments