We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca593d commit 4f701b7Copy full SHA for 4f701b7
1 file changed
function_with_arguments.py
@@ -0,0 +1,10 @@
1
+def greet(name):
2
+ print(f"Hi,{name}")
3
+ print("Are you from cs Department?")
4
+greet("Amrata")
5
+
6
+def add(a,b):#parameter or formal parameter
7
+ c=a+b
8
+ print(f"sum is {c}")
9
+add(5,7)#Argument or actual parameter
10
+add(8,-9)
0 commit comments