filmov
tv
Basics of Python Programming Crash-Course for High School Students and Beyond! (Less than 2 hours)

Показать описание
TIME STAMPS:
00:00 Basics of Python Programming Crash-Course for High School Students and Beyond!
05:43 Starting with Python Jupyter Notebooks :)
06:00 Printing out statements in Python
06:22 Our First Variable in Python
07:29 What is a variable (in programming languages)?
08:46 What are the cell #s in a Jupyter notebook?
13:41 Types of Variables (using the type() function)
14:11 What is a string? (type: str)
15:42 Working with Markdown/Code functionality in Jupyter notebooks
21:08 # variables in Python
21:11 Integer variables in Python (int type)
22:17 Float/Double variables in Python (float type)
23:00 Restart and run all cells in Python notebook
28:51 What are NameErrors? (Variable is not defined)
33:45 Naming variables (using camel case or underscore)
34:46 Scientific Notation in Python
35:24 Why Programming Languages are Useful
36:25 Trying to run really long code in Python (how the timer looks)
37:19 Addition in Python
42:22 Multiplication in Python
42:50 Division in Python
43:24 Taking in User Input in Python
44:18 String variables (type str)
44:56 Convert String variable to Numeric Variable (like Int or Float)
50:19 Concatenate Strings (Adding 2 or more strings together into jumbo string)
52:05 More about Strings :)
53:03 Boolean Variables (True/False) dummy and analogy
57:05 If-else-elif statements using Booleans
01:05:04 Lists in Python
01:06:04 For-Loop to go through a list
01:13:07 Indexing a Python list
01:17:22 Adding items to lists in Python
01:20:38 Tuples in Python (immutable elements from list)
01:22:30 Sets in Python {unique elements from list}
01:28:25 Comparing Lists, Sets, Tuples
01:29:08 Python Dictionaries
01:43:21 SAT Words Dictionary Example
01:49:10 Flashcard Game Example (application of dictionaries and beyond in a fun game :) )