We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28ea461 commit 38c2828Copy full SHA for 38c2828
Basic_Maths.py
@@ -34,4 +34,16 @@ def Percentage(x,y):
34
y=y
35
global result
36
result=x%y
37
- print("result: {0} % {1} = {2}". format(x,y,result))
+ print("result: {0} % {1} = {2}". format(x,y,result))
38
+def FullDivision(x,y):
39
+ x=x
40
+ y=y
41
+ global result
42
+ result=x//y
43
+ print("result: {0} // {1} = {2}". format(x,y,result))
44
+def TakingExponents(x,y):
45
46
47
48
+ result=x ** y
49
+ print("result {0} ** {1} = {2}". format(x,y,result))
0 commit comments