Skip to main content

Learn Python by Thinking in Types - Full Course


Curriculum for the course Learn Python by Thinking in Types - Full Course

Learn Python by thinking in types. The beginner's course focuses on basic programming concepts rather than just teaching the language syntax. It's always helpful to learn from many different perspectives and this course may be just what you need to understand Python. People often confuse learning language syntax with learning programming. This course will guide you through the basic principles needed to learn Python in an efficient manner. ✏️ Octallium developed this course. Check out his channel: https://www.youtube.com/channel/UCd0MaWAxZklFtCyNPEpSl0w 💻 Code and Resources: https://github.com/octallium/modern-python-101 ⭐️ Course Contents ⭐️ ⌨️ (0:00:00) Introduction ⌨️ (0:01:47) Welcome & Github Links ⌨️ (0:03:56) Tour of Python ⌨️ (0:05:13) Installation & Setting up Local Machine ⌨️ (0:09:51) Troubleshooting Installation (Mac) ⌨️ (0:13:30) Hello World ⌨️ (0:17:32) Understanding Variables ⌨️ (0:19:22) Creating Variables ⌨️ (0:24:05) Memory Allocation ⌨️ (0:26:29) Variable Declaration Rules ⌨️ (0:30:03) Primitive Data Types ⌨️ (0:35:41) String Formatting ⌨️ (0:39:56) First Bug ⌨️ (0:46:18) Practise String Formatting ⌨️ (0:55:44) If/Else ⌨️ (1:03:41) And/Or ⌨️ (1:15:14) For Loops ⌨️ (1:17:31) While Loops ⌨️ (1:30:05) Match Operator ⌨️ (1:35:48) Game - Save Zortan ⌨️ (1:59:55) Lists ⌨️ (2:13:39) Tuples ⌨️ (2:20:51) Dictionary ⌨️ (2:38:15) Set ⌨️ (2:45:56) Game - Save Zortan ⌨️ (3:04:49) Enum ⌨️ (3:09:29) Introduction to Functions ⌨️ (3:14:07) Better Functions ⌨️ (3:19:14) Weight ⌨️ (3:21:36) Fly ⌨️ (3:31:07) Args & Kwargs ⌨️ (3:43:23) Global & Local Scope ⌨️ (3:50:20) Game - Save Zortan ⌨️ (4:11:02) Higher Order Functions (HOF) ⌨️ (4:45:47) Object Oriented Programming (OOP) ⌨️ (4:57:07) Classes vs Instances ⌨️ (5:03:13) Methods ⌨️ (5:08:11) Character Class ⌨️ (5:14:46) Use of Classes ⌨️ (5:16:38) Members ⌨️ (5:22:42) Inheritance & Polymorphism ⌨️ (5:39:19) Decorators ⌨️ (6:12:01) Game - Save Zortan ⌨️ (6:28:58) Magic Methods ⌨️ (6:51:06) Error Handling ⌨️ (6:54:54) Try/Except ⌨️ (7:01:15) Try/Except/Else/Finally ⌨️ (7:05:01) Assertion Errors ⌨️ (7:08:05) Raising Errors ⌨️ (7:10:29) Understanding Modules ⌨️ (7:16:44) Packages ⌨️ (7:20:34) Local Package Imports ⌨️ (7:23:05) __init__.py ⌨️ (7:24:53) VOC-DTP ⌨️ (7:36:06) Cash Register - Part 1 ⌨️ (8:04:55) Cash Register - Part 2 ⌨️ (8:26:18) Game - Save Zortan ⌨️ (9:12:30) Final Words

Watch Online Full Course: Learn Python by Thinking in Types - Full Course


Click Here to watch on Youtube: Learn Python by Thinking in Types - Full Course


This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always.


Udemy Learn Python by Thinking in Types - Full Course courses free download, Plurasight Learn Python by Thinking in Types - Full Course courses free download, Linda Learn Python by Thinking in Types - Full Course courses free download, Coursera Learn Python by Thinking in Types - Full Course course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee