Tag Archives: #WSQ08

Wsq 08

On to Functions

What to do:
i’m taking the same instructions as Wsq 03
But this time i’m using functions!,  with the help of this video made by Ken:

Link to my Dropbox code:

Wsq 08

On to Functions

What to do:
i’m taking the same instructions as Wsq 03
But this time i’m using functions!,  with the help of this video made by Ken:

Link to my Dropbox code:

WSQ_08: Sum of Numbers…again ¬¬

WSQ08

#WSQ08 #TC1017

WSQ08

On To Functions #WSQ08 #TC1014

In this activity we had to do the same as the “Fun with numbers” WQS but in this case, we had to use functions instead of simply printing the results. 

First we have to introduce ourselves into the Functions usage, personally I found it easy to understand reading this article: http://en.wikibooks.org/wiki/Non-Programmer‘s_Tutorial_for_Python_3/Defining_Functions

Then we have to do the same prosses as before in the WSQ03, I explained it well in my code so here it is.

Code: https://www.dropbox.com/s/4dxf2rlugfdc4ku/funwithnumbersfunctions.py?dl=0

Antonio Yosefat Juárez Quintero

A01228128

#mastery12 Creating python functions

I used this link to help me do this mastery: https://docs.python.org/2/tutorial/controlflow.html#defining-functions

It is also useful to read chapter 3 of the book “Think Python, How to Think Like a Computer Scientist”, 

You can see an example of this in my . Here’s the code showing the function that i created

def osuma (num1,num2): you have to define your function, in this case it’s osuma with num1 and num 2 as parameters

suma=num1+num2 is what the function does… this line must be idented so the function can work properly

return suma  #the return statement returns with a value from a function… this line must be idented so the function can work properly

 

num1 = int(input(“Give me a number: “)) 

num2 = int(input (“Give me another number: “))

su=osuma(num1,num2) i called osuma function i defined in order for the variable to take the function’s value

 

print (“The sum of your numbers is”, su) 

 

#mastery11 Calling python functions

I used this link to help me do this mastery: https://docs.python.org/2/tutorial/controlflow.html#defining-functions

It is also useful to read chapter 3 of the book “Think Python, How to Think Like a Computer Scientist”, 

You can see an example of this in my . Here’s the code showing where i called the function that i defined:

def osuma (num1,num2): osuma

suma=num1+num2

return suma 

 

def oresta (num1,num2): oresta

resta=num1-num2

return resta

 

def omulti (num1,num2): omulti

multi=num1*num2

return multi

 

def odiv (num1,num2): odiv

div=num1/num2

return div

 

def orem(num1,num2): orem

rem= num1%num2

return rem

 

 

num1 = int(input(“Give me a number: “)) 

num2 = int(input (“Give me another number: “))

i called every function i defined in order for the variable to take the functions value

su=osuma(num1,num2) i called osuma function i defined in order for the variable to take the function’s value

res=oresta(num1,num2) i called oresta function i defined in order for the variable to take the function’s value

mult=omulti(num1,num2) i called omulti function i defined in order for the variable to take the function’s value

di=odiv(num1,num2) i called odiv function i defined in order for the variable to take the function’s value

re=orem(num1,num2) i called orem function i defined in order for the variable to take the function’s value

 

print (“The sum of your numbers is”, su) 

print (“The difference of your numbers is”, res) 

print (“The product of your numbers is”, mult) 

print (“The division of your numbers is”, int(di)) 

print(“The remainder of the division of your numbers is”, int(re)) 

 

#TC1014 #WSQ08 On to functions

For this WSQ i had to read chapter 3 of the book ”  “Think Python, How to Think Like a Computer Scientist” which explained how to make functions.

Here’s my code:

ROGEL GARCÍA A01630171

def osuma (num1,num2):

suma=num1+num2 line must be idented in order for the function to work properly.

return suma  #this line must be idented in order for the function to work properly.

 

def oresta (num1,num2):

resta=num1-num2 #this line must be idented in order for the function to work properly.

return resta  #this line must be idented in order for the function to work properly.

 

def omulti (num1,num2):

multi=num1*num2  #this line must be idented in order for the function to work properly.

return multi  #this line must be idented in order for the function to work properly.

 

def odiv (num1,num2):

div=num1/num2

return div

 

def orem(num1,num2):

rem= num1%num2  #this line must be idented in order for the function to work properly.

return rem  #this line must be idented in order for the function to work properly.

 

 

num1 = int(input(“Give me a number: “)) 

num2 = int(input (“Give me another number: “))

 

su=osuma(num1,num2)

res=oresta(num1,num2)

mult=omulti(num1,num2)

di=odiv(num1,num2)

re=orem(num1,num2)

 

print (“The sum of your numbers is”, su) 

print (“The difference of your numbers is”, res) 

print (“The product of your numbers is”, mult) 

print (“The division of your numbers is”, int(di)) 

print(“The remainder of the division of your numbers is”, int(re))