Skip to content

Commit 06f89ac

Browse files
committed
starter for var len
1 parent 27923b9 commit 06f89ac

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
def biggest(x, y):
2+
if x > y:
3+
return x
4+
else:
5+
return y
6+
7+
8+
print(biggest(1, 7))
9+
10+
# what about more than 2?

0 commit comments

Comments
 (0)