Skip to content

ehsankorhani/python-lessons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning Python

Python learning journey

Install Python (on Ubuntu 20.04)

Ubuntu 20.04 ships with Python3 and ````pip3```.

To check the version:

$ python3 -V
$ pip3 -V

Install Python (on Ubuntu 18.04)

1. Update package repository list

$ sudo apt update

2. Install Supporting Software

The software-properties-common package gives you better control over your package manager

$ sudo apt install software-properties-common

3. Add Deadsnakes PPA

Deadsnakes is a PPA with newer releases than the default Ubuntu repositories.

$ sudo add-apt-repository ppa:deadsnakes/ppa

Refresh package list another time:

$ sudo apt update

4. Install Python 3.7

$ sudo apt install python3.7

Verify the Python version with:

python ––version

Table of contents

Chapter 1 - Introduction

Chapter 2 - Data structure and types

Chapter 3 - Variables

Chapter 4 - Numbers

Chapter 5 - Advanced Numbers

Chapter 6 - Boolean

Chapter 7 - Strings

Chapter 8 - Strings Built-in functions

Chapter 9 - Type conversion

Chapter 10 - Type Conversion

Chapter - Built-in functions

Chapter - Operations

Chapter - Functions

Chapter - Classes and Interfaces


References

About

A Python learning journey

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages