Python: Difference between revisions
From DWIKI
mNo edit summary |
|||
Line 6: | Line 6: | ||
*[https://www.tutorialspoint.com/python https://www.tutorialspoint.com/python] | *[https://www.tutorialspoint.com/python https://www.tutorialspoint.com/python] | ||
*[https://wiki.python.org/moin/BeginnersGuide/Programmers Beginners guide] | *[https://wiki.python.org/moin/BeginnersGuide/Programmers Beginners guide] | ||
=HOWTO= | |||
==Create virtual environment== | |||
mkdir myproject | |||
cd myproject | |||
python -m venv venv | |||
source venv/bin/activate | |||
and then you can | |||
pip install whatever | |||
=Data types= | =Data types= | ||
==Tuples== | ==Tuples== |
Revision as of 11:17, 30 July 2024
Links
HOWTO
Create virtual environment
mkdir myproject cd myproject python -m venv venv source venv/bin/activate
and then you can
pip install whatever
Data types
Tuples
Tuples methods
Regex
Strings
Length of string
len(s)
Lists
List operators
Regular expressions
https://docs.python.org/3/library/re.html
FAQ
-bash: python: command not found
Try
update-alternatives --config python
update-alternatives: error: no alternatives for python
update-alternatives --install /usr/bin/python python $(which python3) 1
Leave virtualenv
deactivate