Skip to content

shashank1094/pythonTutorials

Repository files navigation

pythonTutorials

The best python tutorials I can make while I learn Python 3.

Useful Links

Most important tutorials : Link

  1. MarkDown Tutorials
  2. UnderScore In Python
  3. An interesting collection of surprising snippets and lesser-known Python features.
  4. Packing and Unpacking , Another Link
  5. Importing modules and packages
  6. Different printing styles...print()
  7. Decorators , Another Link
  8. SetupTools
  9. MRO,Ambigous MRO, C3 linearization
  10. any() and all()
  11. Sorting
  12. Order of precedence in python
  13. Tilde in Python
  14. Inserting a list in another list li1[1:1]=li2
  15. Yield
  16. Lambda, filter, reduce and map
  17. reversed() returns iterator and sorted() returns list, Difference between reversed(list) and list.sort(reverse=True)
  18. MetaClasses
  19. Pathlib
  20. Modulus Properties

Building Python From Source LINUX

  sudo apt-get install -y build-essential git libexpat1-dev libssl-dev zlib1g-dev \
  libncurses5-dev libbz2-dev liblzma-dev \
  libsqlite3-dev libffi-dev tcl-dev linux-headers-$(uname -r) libgdbm-dev \
  libreadline-dev tk tk-dev

  Download and Extract File 
  
  cd cpython && ./configure --prefix=/usr \
  --enable-loadable-sqlite-extensions \
  --enable-shared \
  --with-lto \
  --enable-optimizations \
  --with-system-expat \
  --with-system-ffi \
  --enable-ipv6 --with-threads --with-pydebug --disable-rpath \
  && make \
  && sudo make install

About

The best python tutorials I can make while I learn Python 3.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published