Working in network field for last 10 years. I have also completed CCIE DC and a good exposure to datacenter technologies.
If you need any assistance on Nexus/ACI, send me an email on rockingoa@gmail.com
Saturday, 24 June 2017
Python basic example - To find Maximum number out of three
x = int (input("Enter the value of x:- "))
y = int (input("Enter the value of y:- "))
z = int (input("Enter the value of z:- "))
a = max (x,y,z)
print ("maximum number is :- ",a)
No comments:
Post a Comment