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
‘WSQs’ Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Mon, 27 Apr 2015 17:37:44 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #WSQ16 cars cars. https://kenscourses.com/tc101winter2015/2015/wsq16-cars-cars-3/ Mon, 27 Apr 2015 17:37:00 +0000 http://kenscourses.com/tc101winter2015/?guid=047f39bfd3a37d7efaa66534eb448d5a this blogpost.

with this WSQ I learned how to open files in python. and do different things with them.

"open() returns a file object, and is most commonly used with two arguments: open(filename, mode).
>>>
>>> f = open('workfile', 'w')
>>> print f
<open file 'workfile', mode 'w' at 80a0960> 
The first argument is a string containing the filename. The second argument is another string containing a few characters describing the way in which the file will be used. mode can be 'r' when the file will only be read, 'w' for only writing (an existing file with the same name will be erased), and 'a'opens the file for appending; any data written to the file is automatically added to the end. 'r+' opens the file for both reading and writing. The modeargument is optional; 'r' will be assumed if it’s omitted." - Python.org 

I reversed engeneered Efrain's code to see what he tried to do in order to learn.

LINK TO CODE.


Continue reading ]]>
I did this WSQ with help of this blogpost.

with this WSQ I learned how to open files in python. and do different things with them.

open() returns a file object, and is most commonly used with two arguments: open(filename, mode).

>>>

>>> f = open('workfile', 'w')
>>> print f
<open file 'workfile', mode 'w' at 80a0960> 

The first argument is a string containing the filename. The second argument is another string containing a few characters describing the way in which the file will be used. mode can be 'r' when the file will only be read, 'w' for only writing (an existing file with the same name will be erased), and 'a'opens the file for appending; any data written to the file is automatically added to the end. 'r+' opens the file for both reading and writing. The modeargument is optional; 'r' will be assumed if it’s omitted.” – Python.org 

I reversed engeneered Efrain’s code to see what he tried to do in order to learn.

LINK TO CODE.

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ16 cars cars. https://kenscourses.com/tc101winter2015/2015/wsq16-cars-cars-2/ Mon, 27 Apr 2015 17:37:00 +0000 http://kenscourses.com/tc101winter2015/?guid=047f39bfd3a37d7efaa66534eb448d5a this blogpost.

with this WSQ I learned how to open files in python. and do different things with them.

"open() returns a file object, and is most commonly used with two arguments: open(filename, mode).
>>>
>>> f = open('workfile', 'w')
>>> print f
<open file 'workfile', mode 'w' at 80a0960> 
The first argument is a string containing the filename. The second argument is another string containing a few characters describing the way in which the file will be used. mode can be 'r' when the file will only be read, 'w' for only writing (an existing file with the same name will be erased), and 'a'opens the file for appending; any data written to the file is automatically added to the end. 'r+' opens the file for both reading and writing. The modeargument is optional; 'r' will be assumed if it’s omitted." - Python.org 

I reversed engeneered Efrain's code to see what he tried to do in order to learn.

LINK TO CODE.


Continue reading ]]>
I did this WSQ with help of this blogpost.

with this WSQ I learned how to open files in python. and do different things with them.

open() returns a file object, and is most commonly used with two arguments: open(filename, mode).

>>>

>>> f = open('workfile', 'w')
>>> print f
<open file 'workfile', mode 'w' at 80a0960> 

The first argument is a string containing the filename. The second argument is another string containing a few characters describing the way in which the file will be used. mode can be 'r' when the file will only be read, 'w' for only writing (an existing file with the same name will be erased), and 'a'opens the file for appending; any data written to the file is automatically added to the end. 'r+' opens the file for both reading and writing. The modeargument is optional; 'r' will be assumed if it’s omitted.” – Python.org 

I reversed engeneered Efrain’s code to see what he tried to do in order to learn.

LINK TO CODE.

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ16 cars cars. https://kenscourses.com/tc101winter2015/2015/wsq16-cars-cars/ Mon, 27 Apr 2015 17:37:00 +0000 http://kenscourses.com/tc101winter2015/?guid=047f39bfd3a37d7efaa66534eb448d5a this blogpost.

with this WSQ I learned how to open files in python. and do different things with them.

"open() returns a file object, and is most commonly used with two arguments: open(filename, mode).
>>>
>>> f = open('workfile', 'w')
>>> print f
<open file 'workfile', mode 'w' at 80a0960> 
The first argument is a string containing the filename. The second argument is another string containing a few characters describing the way in which the file will be used. mode can be 'r' when the file will only be read, 'w' for only writing (an existing file with the same name will be erased), and 'a'opens the file for appending; any data written to the file is automatically added to the end. 'r+' opens the file for both reading and writing. The modeargument is optional; 'r' will be assumed if it’s omitted." - Python.org 

I reversed engeneered Efrain's code to see what he tried to do in order to learn.

LINK TO CODE.


Continue reading ]]>
I did this WSQ with help of this blogpost.

with this WSQ I learned how to open files in python. and do different things with them.

open() returns a file object, and is most commonly used with two arguments: open(filename, mode).

>>>

>>> f = open('workfile', 'w')
>>> print f
<open file 'workfile', mode 'w' at 80a0960> 

The first argument is a string containing the filename. The second argument is another string containing a few characters describing the way in which the file will be used. mode can be 'r' when the file will only be read, 'w' for only writing (an existing file with the same name will be erased), and 'a'opens the file for appending; any data written to the file is automatically added to the end. 'r+' opens the file for both reading and writing. The modeargument is optional; 'r' will be assumed if it’s omitted.” – Python.org 

I reversed engeneered Efrain’s code to see what he tried to do in order to learn.

LINK TO CODE.

]]>
https://creativecommons.org/licenses/by/4.0/
Estimating e #WSQ14 #TC1014 https://kenscourses.com/tc101winter2015/2015/estimating-e-wsq14-tc1014-2/ Thu, 23 Apr 2015 02:31:06 +0000 http://erickvizcarra.wordpress.com/?p=137 Continue reading ]]> Here is the code of this WSQ:

https://github.com/ErickViz/WSQs/blob/master/WSQ14.py

Estimating e #WSQ14 #TC1014

]]>
https://creativecommons.org/licenses/by/4.0/
Cars #WSQ16 #TC1014 https://kenscourses.com/tc101winter2015/2015/cars-wsq16-tc1014-2/ Thu, 23 Apr 2015 02:10:45 +0000 http://erickvizcarra.wordpress.com/?p=135 Continue reading ]]> Here is my code of the WSQ 16:

https://github.com/ErickViz/WSQs/blob/master/WSQ16.py

Cars #WSQ16 #TC1014

]]>
https://creativecommons.org/licenses/by/4.0/
#Final Dash https://kenscourses.com/tc101winter2015/2015/final-dash-10/ Mon, 20 Apr 2015 17:49:00 +0000 http://kenscourses.com/tc101winter2015/?guid=008958dfd7c555a2ef0cc116010bdb86
1. Will finish WSQ´s by the end of this week, hopefully
2. Will finish my Masteries by the end of the month, I'll try to make mostly videos.
3. Study off of old exams to study for the final.


Continue reading ]]>
To finish this course I:

1. Will finish WSQ´s by the end of this week, hopefully
2. Will finish my Masteries by the end of the month, I’ll try to make mostly videos.
3. Study off of old exams to study for the final.

#Final Dash

#Final Dash

]]>
https://creativecommons.org/licenses/by/4.0/
#Final Dash https://kenscourses.com/tc101winter2015/2015/final-dash-7/ Mon, 20 Apr 2015 17:49:00 +0000 http://kenscourses.com/tc101winter2015/?guid=008958dfd7c555a2ef0cc116010bdb86
1. Will finish WSQ´s by the end of this week, hopefully
2. Will finish my Masteries by the end of the month, I'll try to make mostly videos.
3. Study off of old exams to study for the final.


Continue reading ]]>
To finish this course I:

1. Will finish WSQ´s by the end of this week, hopefully
2. Will finish my Masteries by the end of the month, I’ll try to make mostly videos.
3. Study off of old exams to study for the final.

#Final Dash

#Final Dash

]]>
https://creativecommons.org/licenses/by/4.0/
#Final Dash https://kenscourses.com/tc101winter2015/2015/final-dash-4/ Mon, 20 Apr 2015 17:49:00 +0000 http://kenscourses.com/tc101winter2015/?guid=008958dfd7c555a2ef0cc116010bdb86
1. Will finish WSQ´s by the end of this week, hopefully
2. Will finish my Masteries by the end of the month, I'll try to make mostly videos.
3. Study off of old exams to study for the final.


Continue reading ]]>
To finish this course I:

1. Will finish WSQ´s by the end of this week, hopefully
2. Will finish my Masteries by the end of the month, I’ll try to make mostly videos.
3. Study off of old exams to study for the final.

#Final Dash

#Final Dash

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ14, calculating e https://kenscourses.com/tc101winter2015/2015/wsq14-calculating-e-3/ Mon, 20 Apr 2015 17:40:00 +0000 http://kenscourses.com/tc101winter2015/?guid=34a7936eb781f1e9e46a6fb9c2e3a8ec Continue reading ]]> For this program I changed my float to a String, and in order to print the exact amount of decimal points I used it as a list, and I printend just the values I wanted (learn more):

Code:
https://github.com/EduardoMerino/Sharing-for-Class/blob/master/wsq-14.py

Reference links:
https://docs.python.org/3/tutorial/introduction.html#lists

http://en.wikipedia.org/wiki/E_%28mathematical_constant%29

WSQ14, calculating e

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ14, calculating e https://kenscourses.com/tc101winter2015/2015/wsq14-calculating-e-2/ Mon, 20 Apr 2015 17:40:00 +0000 http://kenscourses.com/tc101winter2015/?guid=34a7936eb781f1e9e46a6fb9c2e3a8ec Continue reading ]]> For this program I changed my float to a String, and in order to print the exact amount of decimal points I used it as a list, and I printend just the values I wanted (learn more):

Code:
https://github.com/EduardoMerino/Sharing-for-Class/blob/master/wsq-14.py

Reference links:
https://docs.python.org/3/tutorial/introduction.html#lists

http://en.wikipedia.org/wiki/E_%28mathematical_constant%29

WSQ14, calculating e

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