We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 792430d commit 07f6194Copy full SHA for 07f6194
minimum.py
@@ -1,7 +1,8 @@
1
+#take input from user
2
n1= int(input('First number: '))
3
n2= int(input('Second number: '))
4
n3= int(input('Third number: '))
5
-Lowest = min(n1, n2, n3)
6
+Lowest = min(n1, n2, n3) #Calculate the lowest value
7
-print('Lowest number among three numbers is: ', Lowest)
8
+print('Lowest number among three numbers is: ', Lowest) #print the number
0 commit comments