Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101fall2015/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/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/feed-rss2.php on line 8
‘#Mastery10’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Thu, 26 Nov 2015 02:14:01 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ Mastery 10. https://kenscourses.com/tc101fall2015/2015/mastery-10-10/ Thu, 26 Nov 2015 02:14:01 +0000 http://alansprogramming.wordpress.com/?p=292 ]]> Mastery10

Those post-its are amazing aren’t they? “Got Feedback?” by Alan Levine. Link: https://www.flickr.com/photos/cogdog/14279306964/

Description: Basic output (printing) and input (text based) in C++.

Learning to print text in a code and let the user input some more of their own. We understand the andvantages of output and input in this mastery.

Link to video here.

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery10 https://kenscourses.com/tc101fall2015/2015/mastery10-6/ Thu, 26 Nov 2015 01:47:28 +0000 http://5nbppkkyj.wordpress.com/2015/11/26/mastery10-2/ ]]> Mastery10Basic output (print) in Python

The main output function is called print(). This function basically lets you make your output look nicer and easier to read.

So you can basically take your input and save it in our variable “n” so you can reuse it using your output function print().

n = input(“Please enter your age: “)

Once we have our input, which is the user’s name. We can take it and print it.

n = input(“Please enter your age: “)

print(n)

But that isn’t too fun since we are basically repeating what the user said. We will put it inside the stringthat restates the obvious.

n = input(“Please enter your age: “)

print(“The user is ” + n + ” years old.”)

This looks better right? The correct answer is no because we didn’t convert our input into a string.

n = input(“Please enter your age: “)

print(“The user is ” + str(n )+ ” years old.”)

Overall, there isn’t much to the print() function, you just have to remember the type of data you are printing and handle it accordingly.

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 9 and 10 https://kenscourses.com/tc101fall2015/2015/mastery-9-and-10/ Wed, 25 Nov 2015 09:08:58 +0000 http://ivancortes96.wordpress.com/?p=101
  • Basic types and their use in C++
  • Basic output (printing) and input (text based) in C++
  • Here is the link to my video:

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    #Mastery10 https://kenscourses.com/tc101fall2015/2015/mastery10-5/ Thu, 29 Oct 2015 03:57:40 +0000 http://jsphsalazar.wordpress.com/?p=81 ]]> Hi guys! Today I’m going to explain you briefly how to make a ‘Basic output’ in python which is called print().

    Python has something called Built-in Functions, these are default functions that you will need to run a program correctly.

    print() is used to show the result of a program to the user, for example if I want to show in the console a simple string I just need to write a simple print(“This is an output”) in my text editor or whatever you use to write code. Very important, don’t forget use the quotes.

    To do this more clear here is some pictures…

    This is the code

    m1

    This is how it looks

    m2

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Mastery Number 10 https://kenscourses.com/tc101fall2015/2015/mastery-number-10/ Thu, 29 Oct 2015 03:11:01 +0000 http://choza973.wordpress.com/?p=78 Mastery Topic about Basic output and print in Python, made a video about it.

    Here you go:

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Mastery 10 – Basic output (printing) and input (text based) in C++ https://kenscourses.com/tc101fall2015/2015/mastery-10-basic-output-printing-and-input-text-based-in-c-5/ Thu, 29 Oct 2015 02:40:03 +0000 http://andreandradec.wordpress.com/?p=201

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    #Mastery10 https://kenscourses.com/tc101fall2015/2015/mastery10-4/ Thu, 29 Oct 2015 00:56:58 +0000 http://eduardomacielm.wordpress.com/?p=132 Hi again everybody! Here is my video tutorial for #Mastery10 for basic input and output with text:

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    #WSQ10 https://kenscourses.com/tc101fall2015/2015/wsq10-39/ Wed, 28 Oct 2015 18:08:37 +0000 http://luisgarciadaniel01.wordpress.com/?p=79 ]]> Here I post the link for you guys to check out the code of this WSQ, it was a little bit hard to understand, it’s still hard to understand. Thanks to my friend sam, I was able to understand it and based my code on hers.

    https://github.com/A01154027/TC101/blob/master/WSQ10.cpp














    ]]>
    https://creativecommons.org/licenses/by/4.0/
    #WSQ10 https://kenscourses.com/tc101fall2015/2015/wsq10-22/ Wed, 28 Oct 2015 18:08:37 +0000 https://luisgarciadaniel01.wordpress.com/?p=79 ]]> Here I post the link for you guys to check out the code of this WSQ, it was a little bit hard to understand, it’s still hard to understand. Thanks to my friend sam, I was able to understand it and based my code on hers.

    https://github.com/A01154027/TC101/blob/master/WSQ10.cpp














    ]]>
    https://creativecommons.org/licenses/by/4.0/
    This is mastery #10. This is about input and output in C++. Easy… https://kenscourses.com/tc101fall2015/2015/this-is-mastery-10-this-is-about-input-and-output-in-c-easy/ Wed, 28 Oct 2015 15:51:48 +0000 http://bsolisale.tumblr.com/post/132087732700

    This is mastery #10. This is about input and output in C++. Easy topic. I decided I will use the voice of the last videos for all my videos. Here is my video: https://www.youtube.com/watch?v=lebP-UwsSkg

    ]]>

    This is mastery #10. This is about input and output in C++. Easy topic. I decided I will use the voice of the last videos for all my videos. Here is my video: https://www.youtube.com/watch?v=lebP-UwsSkg

    ]]>
    https://creativecommons.org/licenses/by/4.0/