Python Procedural Programming (Spyder 5 IDE)
This video is an overview of the inbuilt Python programming language and will focus on the concept of Python Procedural Programming. Procedural Programming takes place line by line in the order specified for example within a script file. This guide will use Spyder 5 which is one of the best Python IDEs for beginners and data scientists due to its simple but powerful user interface and versatile variable explorer.
Written Guides:
https://dellwindowsreinstallationguide.com/python/
Python Playlist:
https://www.youtube.com/playlist?list=PL1RkaknDn7v-EO4V38oDBkZNd6_530nan
Contents:
0:00:00 Introduction
0:04:30 str
0:04:34 object names and assignment operator
0:06:12 script files and variable explorer
0:06:50 the print function
0:08:50 str methods
0:14:52 str datamodel methods
0:17:18 escape characters
0:21:10 relative strings
0:22:20 formatted strings
0:23:15 the input function
0:24:45 list
0:26:46 list methods
0:29:30 mutability
0:32:48 nested lists
0:34:32 int
0:35:22 indexing a collection using integers
0:43:45 casting
0:47:38 numeric operators and order of operations
0:50:00 reassignment operators
0:50:52 using an int for collection replication
0:52:33 dict
0:57:03 indexing using keys
0:57:25 dict methods
1:00:55 type
1:02:18 bool
1:02:32 logical operators
1:04:57 bool arithmetic
1:05:27 float
1:07:01 float precision
1:10:09 scientific notation
1:13:16 tuple
1:16:13 () for order of operations, function inputs and tuple
1:19:37 set
1:20:15 set { } vs dict { }
1:21:08 set methods
1:23:22 complex
1:23:30 imaginary number j
1:27:23 range
1:30:08 enumerate
Once you are comfortable with procedural programming, you should move onto conceptualizing and using Python Code blocks to direct your code in response to a condition or to iterate code for example see my Python Code Blocks video.
#Spyder #Python #ProceduralProgramming