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
‘#mastery30’ Articles at TC101 Fall 2015
Introduction to Programming Python and C++

Tag Archives: #mastery30

Mastery30 – Visualization of Data with tools

Hello this is about the usage of visualization with tools, I  found on the internet there were some libreries that helped with this and the best 5 were:

1. D3

2. Vega

3.Procesing

4.Gephi

“For people just starting out, I’d suggest starting either with Processing or D3,” says Jan Willem Tulp. “Both of them have a very large user base and a great number of examples you can learn from.” 

The online data visualization community can be good for answering questions.  Statisticians may know data, but still be learning the basics of design. Designers may know how to create something that’s aesthetically pleasing, but still be learning about statistics.

So, be sure you select the one you like the best and fulfills all your needs. Some may say java is good too so you can try that one. It is better if you search on google for what you will be needing and be sure it makes all the things you need it to.

 

Mastery30

This is the masteries about

Reading and writing of files in Python

You can find my video here:

Mastery 30: Files

In terms of files external files to python, such as dat, text, cvs… files, the command that you use to open them is……………….. OPEN!!!! open(“filename.extension”,”r or w”) You put r if you are going to read the file You put w if you want to … Continúa leyendo Mastery 30: Files

Mastery 30

Reading and writing files in Python.

 

Masteries 8 & 30

Python conventions (Zen of Python)
Reading and writing of files in Python

Mastery30 – Reading and writing files

Reading files:To read a file you should know this functions: open(“filename”,”r”) and filename.read()The first one is used to open a file, read it and pass that information to a variable ( if you want) or to simply work with it directly.The second one …

Mastery 28 & 30

Mastery 28 – User input (text based) in Python (basic) Here’s basically any WSQ we’ve done, in most of them user input is needed. Mastery 30 – Reading and writing of files in Python Here’s an example code I made to demonstrate I know how to write and read files in Python.

MASTERY30

I KNOW HOW TO READ AND WRITE FILES IN PYTHON

Reading and Writting Files on Python

     For opening a python file, first look for the file you want to open and make sure it is a Python File. You can prove this by seeing if it has the image of a python on it.



     All the files inside the circle are considered Python File. To continue with demonstration we will open the file with the name “Hello.py”. First, give it a right click. A new menu will open and you will select the following option:


     IDLE is included when you install Python so you should have it. This will help us read the file, edit it and run it whenever we want to. Once we select the option, a new window will open. In this window we can see the code and even edit if we want to.


      If we want to run it we just need to press F5 of select the following option

      After this, Python will open a shell that is currently running your program. This way you can make sure the program you read before works just fine


Reading and Writting Files on Python

What should you work on?

Week #12 and more partial exams for you.

For this week's readings:
C++ (TC1017) should either be looking at support for your project, ImageMagick C++ libraries are a good start.
Python (TC1014) should be finishing chapter 11 (Dictionaries).