Initial commit: Python learning project with examples and exercises

This commit is contained in:
2025-07-20 17:08:50 +08:00
commit bc7bb56271
111 changed files with 11535 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#5.1.2
def jia(x,y):
a = x+y
return a
def jian(x,y):
a = x-y
return a
def chen(x,y):
a = x*y
return a
def chu(x,y):
a = x/y
return a
b = int(input())
c = int(input())
print(jia(b,c))
print(jian(b,c))
print(chen(b,c))
print(chu(b,c))