Finding the maximum of three integers. : def « Function « Python Tutorial

Home
Python Tutorial
1.Introduction
2.Data Type
3.Statement
4.Operator
5.String
6.Tuple
7.List
8.Dictionary
9.Collections
10.Function
11.Class
12.File
13.Buildin Function
14.Buildin Module
15.Database
16.Regular Expressions
17.Thread
18.Tkinker
19.wxPython
20.XML
21.Network
22.CGI Web
23.Windows
Python Tutorial » Function » def 
10.1.6.Finding the maximum of three integers.
def maximumValuex, y, z ):
   maximum = x

   if y > maximum:
      maximum = y

   if z > maximum:
      maximum = z

   return maximum

a = intraw_input"Enter first integer: " ) )
b = intraw_input"Enter second integer: " ) )
c = intraw_input"Enter third integer: " ) )

print "Maximum integer is:", maximumValuea, b, c 
print   # print new line

d = floatraw_input"Enter first float: " ) )
e = floatraw_input"Enter second float: " ) )
f = floatraw_input"Enter third float: " ) )
print "Maximum float is: ", maximumValued, e, f )
print

g = raw_input"Enter first string: " )
h = raw_input"Enter second string: " )
i = raw_input"Enter third string: " )
print "Maximum string is: ", maximumValueg, h, i )
10.1.def
10.1.1.def Statement
10.1.2.Forward References
10.1.3.Function Attributes
10.1.4.create an inner function
10.1.5.Creating and using a programmer-defined function.
10.1.6.Finding the maximum of three integers.
10.1.7.Nested function design
10.1.8.defs and lambdas do the same sort of work
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.