LINUXOPOLIS # 1,085 ~ PYTHON-TUTORIALS

By @wglenz3/27/2020linux

PYTHON-TUTORIALS

Building a Linux Habitat
willi glenz @ telegram
Published with PeakD
[home](https://peakd.com/linux/@wglenz/linuxopolis-1-084) ~ [previous](https://steempeak.com/python/@wglenz/linuxopolis-2019-12-08-python)
screenshot by willi glenz
vim ~/.config/fish/functions/gpython-tutorials.fish

function gpython-tutorials --description 'python tutorials'
    clear; echo
    echo '======================================================================================'
    echo '                                    PYTHON-TUTORIALS                                  '
    echo '======================================================================================'
    echo '                                                                                      '
    echo ' python.org               docs.python.org/3/tutorial/index.html                       '
    echo ' python 3 tutorial (en)   python-course.eu                                            '
    echo ' python 3 tutorial (de)   python-kurs.eu/python3_kurs.php                             '
    echo '                                                                                      '
    echo ' chuck severance                                                                      '
    echo '    free online course    py4e.com                                                    '
    echo '    videos                youtube.com/playlist?list=PLlRFEj9H3Oj7Bp8-DfGpfAfDBiblRfl5p'
    echo '    book                  py4e.com/book                                               '
    echo '                                                                                      '
    echo ' socratica                youtube.com/playlist?list=PLi01XoE8jYohWFPpC17Z-wWhPOSuh8Er-'
    echo ' python from scratch      open.cs.uwaterloo.ca/python-from-scratch/                   '
    echo ' dive into python 3       diveintopython3.problemsolving.io/index.html                '
    echo '                                                                                      ' 
    echo '======================================================================================'
    echo
end
SOURCES
 fish ..................................................... fishshell.com/docs/current/index.html
 picture .................................................... screenshot by me ~ my gnome-desktop

comments