This website works better with JavaScript.
Home
Explore
Help
Sign In
E2L_Ivry
/
cours-python
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
f comme float
master
Dimitri Merejkowsky
5 years ago
parent
ad40c593c4
commit
4d7ffb8833
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
```