Skip to content

Commit 59be7bd

Browse files
committed
Add input information
1 parent 8b07e76 commit 59be7bd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

func_param.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
def printmax(a, b):
55
if a > b:
6-
print(a)
6+
print(a, 'is maximum')
77
else:
8-
print(b)
8+
print(b, 'is maximum')
99

1010
printmax(3, 4)
1111

0 commit comments

Comments
 (0)