Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

tuple in python

"""tuples in python:
the lists are mutable, Python needs to allocate an extra memory block 
in case there is a need to extend the size of the list object after it is created. 
In contrary, as tuples are immutable and fixed size, Python allocates 
just the minimum memory block required for the data.
As a result, tuples are more memory efficient than the lists."""
import sys, platform, time
a_list = list()
a_tuple = tuple()
a_list = [1,2,3,4,5]
a_tuple = (1,2,3,4,5)
print(sys.getsizeof(a_list))
print(sys.getsizeof(a_tuple))
start_time = time.time()
b_list = list(range(10000000))
end_time = time.time()
print("Instantiation time for LIST:", end_time - start_time)
start_time = time.time()
b_tuple = tuple(range(10000000))
end_time = time.time()
print("Instantiation time for TUPLE:", end_time - start_time)
start_time = time.time()
for item in b_list:
  aa = b_list[20000]
end_time = time.time()
print("Lookup time for LIST: ", end_time - start_time)
start_time = time.time()
for item in b_tuple:
  aa = b_tuple[20000]
end_time = time.time()
print("Lookup time for TUPLE: ", end_time - start_time)

"""As you can see from the output of the above code snippet, 
the memory required for the identical list and tuple objects is different.
When it comes to the time efficiency, again tuples have a slight advantage 
over the lists especially when lookup to a value is considered."""

"""When to use Tuples over Lists:
Well, obviously this depends on your needs.
There may be some occasions you specifically do not what data to be changed. 
If you have data which is not meant to be changed in the first place, 
you should choose tuple data type over lists.
But if you know that the data will grow and shrink during the runtime of the application, 
you need to go with the list data type."""
Comment

python tuple

# tuples are immutable

# initialize tuple
scores = (10, 20, 30)

# check if 10 is in scores tutple
print(10 in scores)

# print all scores in tuple
for score in scores:
    print(scores)

# print length of tuple
print(len(scores))

# print scores reversed
print(tuple(reversed(scores)))

# print scores reversed
print(scores[::-1])

# print first score by index
print(scores[0])

# print first two scores
print(scores[0:2])

# print tuple
thistuple = ("apple",)
print(type(thistuple))

#NOT a tuple
thistuple = ("apple")
print(type(thistuple))
Comment

pyhton tuple

#It's like a list, but unchangeable
tup = ("var1","var2","var3")
tup = (1,2,3)
#Error
Comment

tuple in python

#a tuple is basically the same thing as a
#list, except that it can not be modified.
tup = ('a','b','c')
Comment

tuple in python

from collections import namedtuple

Point = namedtuple('Point', 'x y')
p = Point(1, y=2)

p[0]
# 1
p.x
# 1
getattr(p, 'y')
# 2
p._fields  # Or: Point._fields
# ('x', 'y')
Comment

tuple python

# Change Value In Tuple :-

friends = ("Mido", "Lucifer", "Abdelrhman")

# Example => Wanna Change ( Abdelrhman ) To ( Aiiob );
# First We Need Transformation From Tuple To List ,
# We Need To Create Variable With Any Name 
# After This We Use list() Function

oneName = list(friends)

# After This We Need Change The Value ,

oneName[-1] = "Aiiob"

# After This We Need Transformation From List To Tuple ,
# We Use tuple() Function

friends = tuple(oneName)

# And We Done (:
Comment

tuple methods in python

# Creating a tuple using ()
t = (1, 2, 4, 5, 4, 1, 2,1 ,1)

print(t.count(1))
print(t.index(5))
Comment

python tuple example

# Creating a Tuple with
# the use of Strings
Tuple = ('Geeks', 'For')
print("
Tuple with the use of String: ")
print(Tuple)
      
# Creating a Tuple with
# the use of list
list1 = [1, 2, 4, 5, 6]
print("
Tuple using List: ")
Tuple = tuple(list1)
  
# Accessing element using indexing
print("First element of tuple")
print(Tuple[0])
  
# Accessing element from last
# negative indexing
print("
Last element of tuple")
print(Tuple[-1])
  
print("
Third last element of tuple")
print(Tuple[-3])
Comment

Python Tuple Operations

# Membership test in tuple
my_tuple = ('a', 'p', 'p', 'l', 'e',)

# In operation
print('a' in my_tuple)
print('b' in my_tuple)

# Not in operation
print('g' not in my_tuple)
Comment

tuplein python

a=(1,2,3,4)
print(a[-3])

Comment

tuple in python

name_of_students = ("Jim" , "yeasin" , "Arafat")
print(name_of_students.index('Arafat'))
Comment

tuple python

tuple = ("Facebook", "Instagram", "TikTok", "Twitter")
Comment

tuple python

tupel python
Comment

tuple in python

#Tuple is immutable(which can't change)
fruits = ("Apple", "orange", "pears")
# You can check place, character in it but can't change
Comment

python tuple methods

count(x) : Returns the number of times 'x' occurs in a tuple
index(x) : Searches the tuple for 'x' and returns the position of where it was first found
Comment

tuple methods in python

#Python has two built-in methods that you can use on tuples.

#Method	Description

count()	
Returns the number of times a specified value occurs in a tuple

index()	
Searches the tuple for a specified value and returns the position 
of where it was found
Comment

Python Tuple Methods

my_tuple = ('a', 'p', 'p', 'l', 'e',)

print(my_tuple.count('p'))  # Output: 2
print(my_tuple.index('l'))  # Output: 3
Comment

PREVIOUS NEXT
Code Example
Python :: python find lcm 
Python :: prime numbers 1 to 100 
Python :: python button click code 
Python :: python fme logger 
Python :: sklearn.metrics accuracy_score 
Python :: resampling data python 
Python :: get chrome version with python 
Python :: list all pip packages 
Python :: python run system commands 
Python :: how to add items in list in python 
Python :: reading a dataset in python 
Python :: Fill in the empty function so that it returns the sum of all the divisors of a number, without including it. A divisor is a number that divides into another without a remainder. 
Python :: python own function and map function 
Python :: python tokens 
Python :: calculator python tutorial 
Python :: python tuples 
Python :: pandas .replace multiple values in column 
Python :: python socket get client ip address 
Python :: mad libs generator python tutorial 
Python :: activate venv in python 
Python :: return programming 
Python :: do while loop python 
Python :: add Elements to Python list Using insert() method 
Python :: uninstall python kali linux 
Python :: python find image on screen 
Python :: dataframe partition dataset based on column 
Python :: skeppy python 
Python :: division operators in python 
Python :: python seq 
Python :: print something after sec python 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =