brew install pyenv
pyenv versions
pyenv install --list | grep 11
brew install xz # fixed missing lib when install python using pyenv
pyenv install 3.11.4
pyenv global 3.11.4- Add "eval "$(pyenv init --path)" to "/.zprofile"
# Setting PATH for Python 3.11
# The original version is saved in .zprofile.pysave
# PATH="/Library/Frameworks/Python.framework/Versions/3.11/bin:${PATH}"
# Setting PATH for pyenv
eval "$(pyenv init --path)"which python
which python3
which pippip3 install --user pipenv.zprofile
# Setting pip packages
export PYTHONUSERBASE="$HOME/.local"
PATH="$PYTHONUSERBASE/bin:${PATH}"source ~/.zprofile
which pipenv# activate
pipenv shell
# install dependencies
pipenv install1.False : boolean value
2.await
3.else
4.import
5.pass
6.None
7.break
8.except
9.in
10.raise
11.True
12.class
13.finally
14.is
15.return
16.and
17.continue
18.for
19.lambda
20.try
21.as
22.def
23.from
24.nonlocal
25.while
26.assert
27.del
28.global
29.not
30.with
31.async
32.elif
33.if
34.or
35.yield

















Python development for beginner
REPL
Read, Evaluate, Print, Loop
Comments
String
https://docs.python.org/3/library/stdtypes.html#text-sequence-type-str

Numbers
https://docs.python.org/3/library/stdtypes.html#numeric-types-int-float-complex

Boolean
Variables
Sequence
List : order sequence of items
Range:

Tuple:

Dictionary:
