Author Archives: citlaligonzalez19

Mastery 11

11. Calling Python functions

Mastery 11


When you “call” a function you are basically just telling the program to execute that function.


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

Mastery 13

13. Importing and using Python modules

Mastery 13


A module is a python file that (generally) has only defenitions of variables, functions, and classes.


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

Mastery 10

10. Basic output (print) in Python

Mastery 10


The output is used to print something in the terminal for the user to see it.


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

Mastery 08

8. Python conventions (Zen of Python)

Mastery 08


YOU CAN SEE THE PROGRAM DESCRIPTION IN THE LINK BELOW

Mastery 04

4. Submit work via Blog RSS and GitHub

I think I nailed this.

You’ll find all my posts in the pages below 

Mastery 02

2.  Ability to create Python project in IDE and run inside the IDE


Ok, first of all for all of you that don’t know what is IDE:

Integrated Development Environment, that’s what the acronyms mean. This is a programming environment that has been packed as an application program, typically consisting of a code editor.

IDE research


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

Lists

WSQ10

Lists

You will find my program in here!!!

https://github.com/citlalygonzale/TC1014/blob/master/lists.py

https://github.com/citlalygonzale/TC1014/blob/master/lists.py

Lists

Factorial

WSQ09

Un factorial es aquel que se multiplica desde el numero 1 hasta el numero “N” que tu quieras, por ejemplo:

Si tu quieres que el numero “N” sea el numero 5, esto es lo que hará el programa:

5 * 4 * 3 * 2 * 1 = 120

Mi programa lo puedes encontrar en: https://github.com/citlalygonzale/TC1014/blob/master/factorial.py

Factorial

http://www.calculatorsoup.com/calculators/discretemathematics/factorials.php

Factorial

Mastery 19

USE OF LOOPS WITH WHILE:

Mastery 19

So here it is a loop with while.

While is used  to repeat a specific block of code an unknown number of times, until a condition is met.

Mastery 19

MASTERY 17

USE OF ELIF WITH A CONDITIONAL:

MASTERY 17

The elif statement :  this one is like the another two conditionals, like they were together forming a new statement. This one allows you to check multiple expressions for truth as soon as one of the conditions used before were fake.

MASTERY 17