List & Tuple in Python
Python lists and list functions
Lists are containers to store a set of values of any data type.
F = [ “apple”, “akash”, 7, 7.33, False]
Where, “apple” is string, 7 is an integer, 7.33 is a floating point number, and False is a Boolean.
We print the ...
sideveloper.hashnode.dev2 min read