Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/feed-rss2.php on line 8
‘#the’ Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Mon, 31 Aug 2015 05:07:56 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ “We don’t want you to see, we come and we go. Here today, gone tomorrow.” https://kenscourses.com/tc101winter2015/2015/we-dont-want-you-to-see-we-come-and-we-go-here-today-gone-tomorrow/ Mon, 31 Aug 2015 05:07:56 +0000 http://grgc25.tumblr.com/post/128006713943
- the fray - trust me Continue reading ]]>
“We don’t want you to see, we come and we go. Here today, gone tomorrow.”

the fray – trust me

]]>
https://creativecommons.org/licenses/by/4.0/
#mastery12 Creating python functions https://kenscourses.com/tc101winter2015/2015/mastery12-creating-python-functions/ Thu, 19 Feb 2015 05:20:56 +0000 http://gilrg18.withknown.com/2015/mastery12-creating-python-functions Continue reading ]]>

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) 

 

]]>
https://creativecommons.org/licenses/by/4.0/
Pick a number https://kenscourses.com/tc101winter2015/2015/pick-a-number-3/ Wed, 04 Feb 2015 18:36:45 +0000 http://gilrg18.withknown.com/2015/pick-a-number Continue reading ]]> ]]> https://creativecommons.org/licenses/by/4.0/ #TC1014 #WSQ06 PICK A NUMBER https://kenscourses.com/tc101winter2015/2015/tc1014-wsq06-pick-a-number/ Wed, 04 Feb 2015 18:35:47 +0000 http://gilrg18.withknown.com/2015/tc1014-wsq06-pick-a-number Continue reading ]]> ]]> https://creativecommons.org/licenses/by/4.0/