Tag Archives: #mastery12

Mastery 12

12. Creating Python functions

Mastery 12


YOU CAN SEE THE PROGRAM DESCRIPTION AND THE LINK THAT REDIRECTS YOU TO THE PROGRAM FILE ON GITHUB BELOW 

Creating and calling C++ functions

 

 

#TC1017 #Mastery12 Creating C++ functions

Creating C++ Functions 

I already upload my video of this easy topic!”” 😀 I took some reference in this web page … here is the link!!

http://aprendecpp.com/blog/programacion-en-c-como-crear-funciones-i.htm

HAVE FUN CODING IN C++ !!

JUST FOLLOW THE EASY STEPS

1. CHOOSE THE KIND OF VARIABLE YOU WILL USE!!

2. CHOOSE THE NAME OF THE FUNCTION

3. WRITE YOUR TERMS AND CODES

4. RETURN SOMETHING :D!!! 

5. } JUST CLOSE IT!! 

Creating C++ functions.

HERE IS MY LINK TO MY VIDEO!!! 

https://www.dropbox.com/s/cx5buodrs4t3zry/Mastery%2012.mov?dl=0

 

Mastery 12

Creating Python functions

link to my video: 

https://www.youtube.com/watch?v=YiYudXpQSng


Mastery 12

Creating Python functions

link to my video: 

https://www.youtube.com/watch?v=YiYudXpQSng


Mastery 12

Creating Python functions

link to my video: 

https://www.youtube.com/watch?v=YiYudXpQSng


#MASTERY12

Hello here is video of how to create a function in c++

https://www.youtube.com/watch?v=TQSwNEoutEE&feature=youtu.be

Mastery12 – Creating python functions

Creating a function in python is not hard, give it a name and give it a job.

to create it first we need to define it, giving it a name and a number of variables it needs.

def  adding_function(a,b):

and inside the function the operation it will perform, this function will add a + b and return the result.

def  adding_function(a,b)

       return a+b

now call the function to add two numbers.

reference:

http://en.wikibooks.org/wiki/Non-Programmer%27s_Tutorial_for_Python_2.6/Defining_Functions

#Mastery12

Creating C++ functions