“Operasi Tuple Python” Kode Jawaban

Operasi Tuple Python

# 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)
SAMER SAEID

Metode Tuple Python

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
MayMau

Tuple dalam Python

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

Jawaban yang mirip dengan “Operasi Tuple Python”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya