Fast, reliable, and secure dependency management.
Some reasons you might want to use REST framework:
- Improved numeric literals: six_figures = 100_000 will output 100000
- String interpolation: Introduces Formatted String Literals.
>>> a = 5 >>> b = 10 >>> f'Five plus ten is {a + b} and not {2 * (a + b)}.' 'Five plus ten is 15 and not 30.' - Type annotations for variables: Add type annotations to functions and methods
def my_add(a: int, b: int) -> int: return a + b
- Operating System : Ubuntu 16.04 LTS (64-bit)
wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tgz
tar -xvf Python-3.6.3.tgz
cd Python-3.6.3
./configure
make
make install
If you get zlib not available install zlib using:
sudo apt-get install zlib1g-dev
if make or make install generates error use sudo before these.
python3.6 --version
python3 -m venv /path/to/new/virtual/environment