#data types ''' data types in pyton are none, numeric, list, tuple, set, string, range, and dictionary none is null like other language numeric has int, float, bool and complex ''' a = 10>5 print(a) print(type(a))
#range print(list(range(8)))
| Name | Name | Last commit date | ||
|---|---|---|---|---|
#data types ''' data types in pyton are none, numeric, list, tuple, set, string, range, and dictionary none is null like other language numeric has int, float, bool and complex ''' a = 10>5 print(a) print(type(a))
#range print(list(range(8)))