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'>
--
https://mail.python.org/mailman/listinfo/python-list
