The best python tutorials I can make while I learn Python 3.
Most important tutorials : Link
- MarkDown Tutorials
- UnderScore In Python
- An interesting collection of surprising snippets and lesser-known Python features.
- Packing and Unpacking , Another Link
- Importing modules and packages
- Different printing styles...print()
- Decorators , Another Link
- SetupTools
- MRO,Ambigous MRO, C3 linearization
- any() and all()
- Sorting
- Order of precedence in python
- Tilde in Python
- Inserting a list in another list li1[1:1]=li2
- Yield
- Lambda, filter, reduce and map
- reversed() returns iterator and sorted() returns list, Difference between reversed(list) and list.sort(reverse=True)
- MetaClasses
- Pathlib
- Modulus Properties
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