list and tuple in Python
Question
What are lists and tuples?
list and tuple in Python
both are used to store multiple data in a single variable but there are some basic difference that list are changeable where tuples are not changeable.
list are define in [ ] brackets where tuples are define in ( ) brackets.
Comments
Post a Comment