914
contributi
(→Stringhe: aggiungo categoria lezione 1) |
(float) |
||
Riga 13: | Riga 13: | ||
>>> type(-6) | >>> type(-6) | ||
<class 'int'> | <class 'int'> | ||
</pre> | |||
== Float == | |||
I float sono i numeri con la virgola, sia positivi che negativi e compresi anche quelli con parte decimale pari a 0. | |||
<pre> | |||
>>> type(0.5) | |||
<class 'float'> | |||
>>> type(1.0) | |||
<class 'float'> | |||
>>> type(-3.7) | |||
<class 'float'> | |||
</pre> | </pre> | ||
contributi