“Python Tuple Operations” Ответ

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

Методы Python Tuple

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 is immutable(which can't change)
fruits = ("Apple", "orange", "pears")
# You can check place, character in it but can't change
Ugly Unicorn

Ответы похожие на “Python Tuple Operations”

Смотреть популярные ответы по языку

Смотреть другие языки программирования