We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0255f20 commit b738425Copy full SHA for b738425
Python_Basics_2/highest_even.py
@@ -0,0 +1,11 @@
1
+# Highest Even
2
+
3
+def heightEven(even):
4
+ evens = []
5
+ for items in even:
6
+ if items % 2 == 0:
7
+ evens.append(items)
8
+ return max(evens)
9
10
11
+print(heightEven([1, 2, 3, 4, 11, 12, 90, 22]))
0 commit comments