Coder Social home page Coder Social logo

archive.learn.python's Introduction

Python Instructor

  • Disclaimer: The content of this repository is only for testing and training and is provided at the discretion of the author; So it may not be suitable for production or other conditions.
  • Install and Run Python.
  • Examples
  • Homeworks

Headings

  • Introduction

  • Syntax

  • Variables

  • String

  • Function

  • Random

    • random(), randint(), shuffle(), choice()
  • Operators
    - [Operators](/lessons/python/concepts/operators)
    1. [Arithmetic](/lessons/python/concepts/operators/arithmetic-operators.py) `+ -` ,...
    2. [Assignment](/lessons/python/concepts/operators/assignment-operators.py) `= += -=` ,...
    3. [Comparison](/lessons/python/concepts/operators/comparison-operators.py) `== != >=` ,...
    4. [Logical](/lessons/python/concepts/operators/logical-operators.py) `and, or, not`
    5. [Identity](/lessons/python/concepts/operators/identity-operators.py) `is, is not`
    6. [Membership](/lessons/python/concepts/operators/membership-operators.py) `in, not in`
    7. [Bitwise](/lessons/python/concepts/operators/bitwise-operators.py) `& | ^ ~ << >>`
    </details>
    
  • Debugging (break point)

  • List
    - Ordered, Changeable, Indexed, Allow Duplicate
    - [`access, assign, iterate, list(), .append(), .insert(), .remove(), del, .pop(), .copy(), .extend(), .clear(), len(), .count(), slice, join, unpack, in, .index(), .reverse(), .sort()`](/lessons/python/concepts/collections/list-access.py)
    </details>
    
  • Tuple
    - Ordered, Unchangeable, Indexed, Allow Duplicate
    - Tuples are **unchangeable**, or **immutable** so you cannot add or remove items from it
    - [`access, tuple with one item, tuple(), iterate, del completely, len(), .count(), slice, join, unpack, in, .index()`](/lessons/python/concepts/collections/tuple-access.py)
    </details>
    
  • Set
    - Unordered, Unchangeable (By index, But you can add/remove), Unindexed, No Duplicate
    - [`access, len(), set(), in, .add(), .update(), (.remove(), .discard(), .pop(), del), .copy(), .clear(), (.union(), intersection, difference, symmetric_difference), (disjoint, subset, superset)`](/lessons/python/concepts/collections/set-access.py)
    - [`frozenset()`](/lessons/python/concepts/collections/set-frozen.py)
    </details>
    
  • Dictionary
    - Ordered, Changeable, Key Value, No Duplicate
    - [`access, assign, .update(), dict(), .keys(), .values(), .items(), zip(), len(), .pop(), .popitem(), del, .clear(), .copy(), .fromkeys(), .setdefault())`](/lessons/python/concepts/collections/dict-access.py)
    </details>
    
  • DataTypes
    - Numbers: [`Integer, Float, Complex`](/lessons/python/concepts/data-types/data-type-number.py)
    - Sequence: [`String`](/lessons/python/concepts/data-types/data-type-string.py), [`Range`](/lessons/python/concepts/data-types/data-type-range.py), [`List`](/lessons/python/concepts/collections/list-access.py), [`Tuple`](/lessons/python/concepts/collections/tuple-access.py), `Bytes`, `ByteArray`
    - Set: [`Set`](/lessons/python/concepts/collections/set-access.py), [`FrozenSet`](/lessons/python/concepts/collections/set-frozen.py)
    - Map: [`Dictionary`](/lessons/python/concepts/collections/dict-access.py)
    - Nothing: `None`
    - Boolean: [`Boolean`](/lessons/python/concepts/boolean/boolean-concept.py)
    - Binary: [`Bytes, ByteArray, MemoryView`](/lessons/python/concepts/data-types/data-type-bytes.py)
    - `bytes` is immutable; however `bytearray` is mutable
    </details>
    
  • Module

  • Conversion, TypeCasting

  • Input

  • Keywords
    - [if, elif, else](/lessons/python/concepts/keywords/keywords-if-elif.py)
    - [for](/lessons/python/concepts/keywords/keywords-for.py)
    - [while, continue, break](/lessons/python/concepts/keywords/keywords-while.py)
    - [try, except, finally](/lessons/python/concepts/keywords/keywords-try-except.py)
    - [and, or, not, in, is](/lessons/python/concepts/keywords/keywords-and-or-not-in-is.py)
    - [import, from, as](/lessons/python/concepts/keywords/keywords-import.py)
    - [class, def, lambda, pass, return, del](/lessons/python/concepts/keywords/keywords-class-def-lambda-pass-ret-del.py)
    - [global, nonlocal](/lessons/python/concepts/keywords/keywords-scope.py)
    - [assert](/lessons/python/concepts/keywords/keywords-assert.py) <sub>[Optonal]</sub>, [raise](/lessons/python/concepts/keywords/keywords-raise.py) <sub>[Optonal]</sub>
    - [with](/lessons/python/concepts/keywords/keywords-with.py) <sub>[Optonal]</sub>
    - [yield](/lessons/python/concepts/keywords/keywords-yield.py) <sub>[Optonal]</sub>
    </details>
    
  • Comperhension

  • Scope, Globals, Locals

  • Read File, Write File, Pickle

  • Math

  • Date, Time

  • Function, Method, Lambda

  • OOP

    • Class, Object
    • Constructor
    • ToString, Representation
    • Methods
      • Object Method
      • Static Method
      • Class Method
    • Inheritance
    • Override
    • Overload
    • Getter, Setter ???
    • Enum
  • Eval, Exec

  • *argv, **kwargs

  • Sys

  • OS

  • Assertion

  • Generator


Optional

  1. VENV
  2. Exception
    1. Custom Exception
    2. Types of Errors
  3. Meta
    1. Meta Classes
    2. Meta Programming
  4. Iterator
  5. Closure
  6. Descriptor
  7. Context Manager
  8. Regular Expression
  9. Socket client, server
  10. Data
    1. SQL, NoSQL, ORM (SQLAlchemy)
    2. JSON, CSV, XML, OWL, ...
  11. Serialization, Deserialization

Advanced

  1. Dependency Injection
  2. Inversion of Control
  3. Message Passing
  4. Multi Threading
  5. Multi Processing
  6. Semaphore, Lock, Mutex

Modules, Packages, Libs, ...

More

archive.learn.python's People

Contributors

sh-navid avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.