Code Genic is a blog which provides the codes for the daily life uses. All the codes are mostly for college related Projects or Lab work.
Wednesday, February 27, 2019
Maximum of given 3 numbers using In-Built Funtion - Python3
a=int(input('Enter the number A: ')) b=int(input('Enter the number B: ')) c=int(input('Enter the number C: ')) d=max(a,b,c) print('Max Of 3 number is '+str(d))
No comments:
Post a Comment