Chapter 4 | Lists and Tuples -Python Tutorial for Beginners (With Notes)
TelcoGuru TelcoGuru
2.7K subscribers
12,280 views
456

 Published On Oct 12, 2023

If you need notes and codes of this session please send mail to "[email protected]"

Python lists and tuples explained

#Python tutorial for beginners
#python #tutorial #course Python list set tuple tutorial example explained
List = [] ordered and changeable. Duplicates OK
Set = {} unordered and immutable, but Add/Remove OK. NO duplicates
Tuple = () ordered and unchangeable. Duplicates OK. FASTER

Python Tuples……what are they? Are they the same as Python Lists? In this video, we’re going on a journey to uncover all the deep, dark secrets of tuples.
In this video, you will learn the syntactic and functional differences between lists and tuples in Python with step-by-step examples.

What is Python? Python is a high-level object-oriented programming language developed by Guido van Rossum in 1989 and was first released in 1991. Python is often called a batteries included language due to its comprehensive standard library. A fun fact about Python is that The name Python was actually taken from the popular BBC comedy show of that time, ""Monty Python's Flying Circus"". Python is widely used these days from data analytics, machine learning, and web development. Python allows you to write programs in fewer lines of code than most of the programming languages. Python as a programming language is growing rapidly. It's the right time to get trained in Python.

A programming language needs to have support for numbers to carry out calculations. In Python, the numbers are categorized into different data-types and the types are implemented in Python as classes. There are three numeric types in Python: int for integers, float for decimal numbers, and complex for complex numbers.
Python Tuples are small and fast structures for storing ordered data in Python. We will learn how tuples differ from lists, and use the timeit and sys modules to measure the time and space you can save by using them.
#PythonLists #PythonTuples #PythonDictionaries #PythonListsAndDictionaries #PythonTutorial #Python #PythonForBeginners #PythonTraining #PythonTutorialForBeginners #LearnPythonProgramming #python #tuples #lists

show more

Share/Embed