Data Types

Cai Gengyang gengyangcai at gmail.com
Tue Sep 20 23:00:55 EDT 2016


So I am going through chapter 7.1 (Data Types) of http://programarcadegames.com/index.php…
What do these terms (input and output) mean --- Can someone explain in plain English and layman's terms ? Thanks a lot ...

>>> type(3)
<class 'int'>
>>> type(3.145)
<class 'float'>
>>> type("Hi there")
<class 'str'>
>>> type(True)
<class 'bool'>



More information about the Python-list mailing list