FileMood

Download Python-3-Essential-Training

Python Essential Training

Name

Python-3-Essential-Training

 DOWNLOAD Copy Link

Total Size

707.3 MB

Total Files

166

Last Seen

2024-07-08 23:39

Hash

E93298B977F2CB4182BE852FC0954640C4F009E0

/01 Introduction/

001 Welcome.mp4

3.5 MB

002 Understanding prerequisites for Python.mp4

3.0 MB

003 Using the exercise files.mp4

2.5 MB

/02 Python Quick Start/

001 Getting started with _Hello World_.mp4

7.0 MB

002 Selecting code with conditionals.mp4

7.6 MB

003 Repeating code with a loop.mp4

7.1 MB

004 Reusing code with a function.mp4

4.6 MB

005 Creating sequences with generator functions.mp4

4.6 MB

006 Reusing code and data with a class.mp4

7.5 MB

007 Greater reusability with inheritance and polymorphism.mp4

16.9 MB

008 Handling errors with exceptions.mp4

4.1 MB

/03 Setting Up Python/

001 Installing Python 3 and Eclipse for Windows.mp4

20.2 MB

002 Installing Python 3 and Eclipse for Mac.mp4

20.2 MB

/04 General Syntax/

001 Creating a main script.mp4

5.6 MB

002 Understanding whitespace in Python.mp4

6.8 MB

003 Commenting code.mp4

6.0 MB

004 Assigning values.mp4

5.9 MB

005 Selecting code and values with conditionals.mp4

7.9 MB

006 Creating and using functions.mp4

6.5 MB

007 Creating and using objects.mp4

7.7 MB

/05 Variables, Objects, and Values/

001 Understanding variables and objects in Python.mp4

4.1 MB

002 Distinguishing mutable and immutable objects.mp4

4.0 MB

003 Using numbers.mp4

5.9 MB

004 Using strings.mp4

10.8 MB

005 Aggregating values with lists and tuples.mp4

8.2 MB

006 Creating associative lists with dictionaries.mp4

7.3 MB

007 Finding the type and identity of a variable.mp4

7.0 MB

008 Specifying logical values with True and False.mp4

2.4 MB

/06 Conditionals/

001 Selecting code with if and else conditional statements .mp4

4.0 MB

002 Setting multiple choices with elif.mp4

3.9 MB

003 Understanding other strategies for multiple choices.mp4

4.3 MB

004 Using the conditional expression.mp4

4.1 MB

/07 Loops/

001 Creating loops with while.mp4

2.4 MB

002 Iterating with for.mp4

6.4 MB

003 Enumerating iterators.mp4

5.7 MB

004 Controlling loop flow with break, continue, and else.mp4

4.6 MB

/08 Operators/

001 Performing simple arithmetic.mp4

3.3 MB

002 Operating on bitwise values.mp4

5.1 MB

003 Comparing values.mp4

5.3 MB

004 Operating on Boolean values.mp4

4.4 MB

005 Operating on parts of a container with the slice operator.mp4

11.1 MB

006 Understanding operator precedence.mp4

6.2 MB

/09 Regular Expressions/

001 Using the re module.mp4

1.6 MB

002 Searching with regular expressions.mp4

5.7 MB

003 Replacing with regular expressions.mp4

6.2 MB

004 Reusing regular expressions with re.compile.mp4

6.8 MB

/10 Exceptions/

001 Learning how exceptions work.mp4

1.9 MB

002 Handling exceptions.mp4

7.6 MB

003 Raising exceptions.mp4

6.8 MB

/11 Functions/

001 Defining functions.mp4

10.9 MB

002 Using lists of arguments.mp4

4.1 MB

003 Using named function arguments.mp4

7.8 MB

004 Returning values from functions.mp4

3.3 MB

005 Creating a sequence with a generator function.mp4

14.8 MB

/12 Classes/

001 Understanding classes and objects.mp4

8.4 MB

002 Using methods.mp4

10.3 MB

003 Using object data.mp4

17.4 MB

004 Understanding inheritance.mp4

9.2 MB

005 Applying polymorphism to classes.mp4

12.7 MB

006 Using generators.mp4

17.0 MB

007 Using decorators.mp4

7.0 MB

/13 String Methods/

001 Understanding strings as objects.mp4

4.9 MB

002 Working with common string methods.mp4

8.7 MB

003 Formatting strings with str.format.mp4

8.6 MB

004 Splitting and joining strings.mp4

4.2 MB

005 Finding and using standard string methods.mp4

3.3 MB

/14 Containers/

001 Creating sequences with tuples and lists.mp4

6.5 MB

002 Operating on sequences with built-in methods.mp4

10.4 MB

003 Organizing data with dictionaries.mp4

7.7 MB

004 Operating on character data with bytes and byte arrays.mp4

17.4 MB

/15 File I_O/

001 Opening files.mp4

3.5 MB

002 Reading and writing text files.mp4

8.4 MB

003 Reading and writing binary files.mp4

9.2 MB

/16 Databases/

001 Creating a database with SQLite 3.mp4

12.3 MB

002 Creating, retrieving, updating, and deleting records.mp4

15.2 MB

003 Creating a database object.mp4

17.6 MB

/17 Modules/

001 Using standard library modules.mp4

17.9 MB

002 Finding third-party modules.mp4

11.9 MB

003 Creating a module.mp4

12.2 MB

/18 Debugging/

001 Dealing with syntax errors.mp4

15.5 MB

002 Dealing with runtime errors.mp4

9.2 MB

003 Dealing with logical errors.mp4

8.3 MB

004 Using unit tests.mp4

13.0 MB

/19 Building a Database Application/

001 Normalizing a database interface.mp4

14.7 MB

002 Deconstructing a database application.mp4

17.5 MB

003 Displaying random entries from a database.mp4

12.9 MB

/20 Conclusion/

001 Goodbye.mp4

622.1 KB

/.../02 Quick Start/

conditionals.py

0.2 KB

exceptions.py

0.3 KB

forloop.py

0.1 KB

function.py

0.3 KB

generator.py

0.3 KB

hello.py

0.0 KB

lines.txt

0.1 KB

oop2.py

1.4 KB

oop3.py

1.8 KB

simpleoop.py

0.4 KB

whileloop.py

0.2 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/04 Syntax/

comments.py

0.5 KB

syntax.py

0.3 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/05 Variables/

variables.py

0.3 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/06 Conditionals/

conditionals.py

0.3 KB

jumptable.py

1.0 KB

switch.py

0.3 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/07 Loops/

for.py

0.3 KB

iterators.py

0.3 KB

lines.txt

0.1 KB

loopcontrol.py

0.3 KB

while.py

0.4 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/08 Operators/

ops.py

0.3 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/09 Regexes/

raven.txt

6.3 KB

regex.py

0.4 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/10 Exceptions/

exceptions.py

0.3 KB

lines.txt

0.1 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/11 Functions/

functions.py

0.3 KB

generator.py

0.3 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/12 Classes/

classes.py

0.4 KB

decorators.py

0.6 KB

generator.py

0.3 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/13 Strings/

lines.txt

0.1 KB

strings.py

0.5 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/14 Containers/

containers.py

0.3 KB

utf8.txt

0.1 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/15 Files/

bigfile.txt

310.0 KB

files.py

0.3 KB

lines.txt

0.1 KB

olives.jpg

142.3 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/16 Databases/

databases.py

0.3 KB

sqlite3-class.py

2.8 KB

sqlite3-crud.py

1.6 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/17 Modules/

modules.py

0.3 KB

saytime.py

4.7 KB

saytime.pyc

7.1 KB

web-saytime.py

0.4 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/18 Debugging/

incrange-errors.py

1.0 KB

mvc-errors.py

1.7 KB

saytime-errors.py

4.7 KB

saytime.py

4.7 KB

test-saytime.py

1.6 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/19 Projects/Extras/RSS/

rss.db

6.1 KB

rss.py

3.8 KB

rssdb.py

1.8 KB

tkrss.py

8.0 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/19 Projects/lib/

bwCGI.py

3.9 KB

bwConfig.py

1.1 KB

bwDB.py

6.3 KB

bwTL.py

2.6 KB

saytime.py

4.7 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/19 Projects/testimonials/

bwCGI.py

3.9 KB

bwConfig.py

1.1 KB

bwDB.py

6.3 KB

bwTL.py

2.6 KB

db.conf

0.2 KB

db.py

7.3 KB

index.html

1.8 KB

main.css

1.2 KB

testimonials.py

1.9 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/19 Projects/testimonials/data/

testimonials.db

4.1 KB

/.../Ex_Files_Python_3_EssT/Exercise Files/19 Projects/testimonials/html/

db.css

2.5 KB

delconfirm.html

0.4 KB

edit.html

0.6 KB

footer.html

0.3 KB

header.html

0.4 KB

main.html

0.6 KB

nextprev.html

0.1 KB

recline.html

0.6 KB

 

Total files 166


Copyright © 2024 FileMood.com