Explorar el Código

f comme float

master
Dimitri Merejkowsky hace 5 años
padre
commit
4d7ffb8833
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      sessions/python-09.md

+ 1
- 1
sessions/python-09.md Ver fichero

@@ -43,7 +43,7 @@ age = 42
print("Vous avez %i ans" % age) # 'i' comme integer

poids = 68.5
print("Vous pesez %f kilos" % poids) # 'f' comme integer
print("Vous pesez %f kilos" % poids) # 'f' comme float

```