Explorar el Código

no f-strings please

too many students have Python < 3.6
master
Dimitri Merejkowsky hace 6 años
padre
commit
1627fa2c94
Se han modificado 1 ficheros con 0 adiciones y 14 borrados
  1. +0
    -14
      sessions/02.md

+ 0
- 14
sessions/02.md Ver fichero

@@ -62,20 +62,6 @@ Dimitri Merejkowsky <br />

---

# f-strings

Interpolation d'une variable dans une string:

!pycon
>>> a = 1
>>> b = 2
>>> f"a vaut {a} et b vaut {b}"
'a vaut 1 et b vaut 2'

Notez le 'f' avant le guillemet, et les accolades

---

# Répéter une string

!pycon