Function Creation:
>>> def functionName1():>>> print("Kapil")
>>>
>>> functionName1()
>>> Kapil
To create a python function 'def' word needs to be pre-fix in front of user function name end by"():"
OR
Users can also create functions like this way:
>>> def functionName2(Message):
>>> print(Message)
>>> functionName2("This is my message!")
>>> This is my message!
OR
>>> print(Message)
>>> functionName3()
>>> My message.
OR
>>> def addVal1(Val1, Val2):
>>> print(Val1, "+" Val2, "=",(Va1 + Val2))
>>> addVal1(3,2) #User add the value 3,2
>>> 5 #Python IDE result is 5
OR
>>> def addVal2(Val1, Val2):
>>> return Val1 + Val2
>>> print("2 + 3 equals to 4 + 1 is ", (addVal2(2,3) == addVal2(4,1)))
>>> 2 + 3 equals to 4 + 1 is True #Python IDE result is 5 equal 5 True.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.