소스 검색

Update python-11.md

master
Dimitri Merejkowsky 5 년 전
부모
커밋
28b1116be6
1개의 변경된 파일44개의 추가작업 그리고 0개의 파일을 삭제
  1. +44
    -0
      sessions/python-11.md

+ 44
- 0
sessions/python-11.md 파일 보기

@@ -0,0 +1,44 @@
% Programmation avec Python (chapitre 11)
% Dimitri Merejkowsky

\center \huge Retour sur les exceptions

# A quoi sert finally

```python
try:
fp = open("file.txt")
1 / 0
except ZeroDivisionError:
print("got you")
finally:
print("closing")
fp.close()
```

Que se passe-t-il si on remplace `1/0` par
`my_list[42]` ?

\center \huge Libraries tierces

# Introduction: pip

* python3 -m pip
* `--user`

But: what about several projects?

# Virtualenvs

# pip + virtualenv = <3

# Tuto

* Let's install requests!

```
# avant

# après
```