top of page
Metric Coders
Home
Blog
AI SaaS
LLMs
More
Use tab to navigate through the menu items.
Apr 9, 2023
2 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...
bottom of page