Embed presentation
Download to read offline





![Lists
Saravanakumar,AP/CSE 6
• Lists hold different types of data using [] and , . Example : c= ["hey","you",1,2,3,"go"]](https://image.slidesharecdn.com/python-datatypes-200809132705/75/Python-data-types-6-2048.jpg)




Python has several basic data types including numbers (int, float, complex), strings, tuples, lists, and dictionaries. Numbers can be entered using decimal, binary, octal, and hexadecimal notation. Strings can be defined using single or double quotes. Tuples are ordered and unchangeable like lists. Lists are ordered collections that can hold mixed data types. Dictionaries are unordered collections of key-value pairs. Sets are unordered collections with no duplicate elements.





![Lists
Saravanakumar,AP/CSE 6
• Lists hold different types of data using [] and , . Example : c= ["hey","you",1,2,3,"go"]](https://image.slidesharecdn.com/python-datatypes-200809132705/75/Python-data-types-6-2048.jpg)



