Browse Source

f comme float

master
Dimitri Merejkowsky 5 years ago
parent
commit
4d7ffb8833
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      sessions/python-09.md

+ 1
- 1
sessions/python-09.md View File

@@ -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

```