Closed HenrikBengtsson closed 7 years ago
In https://github.com/thewhitetulip/build-app-with-python-antitextbook/blob/master/manuscript/03-01-understanding-variables.md, it could be helpful to also show the difference between 1 and 1.0, e.g.
1
1.0
>>> type(1) <type 'int'> >>> type(1.) <type 'float'> >>> type(1.0) <type 'float'>
In https://github.com/thewhitetulip/build-app-with-python-antitextbook/blob/master/manuscript/03-01-understanding-variables.md, it could be helpful to also show the difference between
1
and1.0
, e.g.