top of page


Apr 9, 20232 min read
Lists in Python
Lists are like arrays. A list can have elements of any data type. a = [10,20,30,40,50, "ABC", True, 2.09, 3j] print(a) The len() is used...


Apr 8, 20231 min read
Python Datatypes
Python supports several data types. They are string, int, float, list, tuple, range, dict, set, frozenset, bool, bytes, bytearray,...
bottom of page