%% [[algorithm]] [[Python]] %% # Weeks [[Week 1 programming fun pt 2]] [[Week 2 programming fun pt 2]] [[Week 3 programming fun pt 2]] [[Week 4 programming fun pt 2]] [[Week 5 programming fun pt 2]] [[Week 6 programming fun pt 2]] ### Games for practicing programming [[Videogame. The farmer was replaced]] [The coding game](https://www.codingame.com/home) [Codedex](https://www.codedex.io/python/06-data-types) [Checki0](https://py.checkio.org) --- https://www.codegenes.net/blog/how-to-add-space-in-python/#adding-space-in-print-statements [[Head First Python]] #### Python code block setup ```python number1 = 5 print (number1) ``` # Class info %% ## Classmate roster Total in class: 6 1. [[Hatem Eltoukhy Ibrahim Ahmed]] 2. [[Liset Del Carpio Calderon]] 3. [[Home page/Programming fundamentals folder/Programming fundamentals part 2/Yixi Hu.md|Yixi Hu]] 4. [[Home page/Programming fundamentals folder/Programming fundamentals part 2/Emilio Javier Mantilla Chica.md|Emilio Javier Mantilla Chica ]] 5. [[Aarya Jayesh Shah]] %% ## Teacher [[Hector Hernandez]] - [ ] #task Memorize definition of algorithm ➕ 2026-01-17 What is computer programming. Activity of communicating [[algorithm]]s with the computer. [[palindrome]] [[Catalan numbers]] [[loops]] ## Computer history [[computer history]] Old style coding used punch cards, no screens, no keyboard. ![[Vintage IBM puch card old computer.jpg]] ![[Student using punch card machine in 1970.jpg]] ## Slides ### Section 2.2 snippets ```python 45 + 72 x = 7 y = 3 # Adding Variable Values and Viewing the Result x + y # Calculations in Assignment Statements total = x + y total print (total) # Python Style # Types type(x) type(10.5) ``` - [ ] #task Review tis problem ➕ 2026-01-17 What is happening here? ```python total = 8 while total <=50: total = total * 3 print (total) while total <=50: total = total * 3 print (total) ``` print (total) print(total) ## Terms