Skip to content

Commit 2178236

Browse files
authored
Update To find the largest number between 3 numbers.py
Added missing ")"
1 parent a6e6f69 commit 2178236

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

To find the largest number between 3 numbers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
a=[]
44
for i in range(3):
5-
a.append(int(input())
5+
a.append(int(input()))
66
print("The largest among three numbers is:",max(a))
77

0 commit comments

Comments
 (0)