“Методы Python Tuple” Ответ

Переверните питон

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

Туплоин питон

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

Coder Cat

Методы Python Tuple

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

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

Суть в питоне

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

Переверните питон

tupel python
Ma

Методы 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

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

Вопросы похожие на “Методы Python Tuple”

Больше похожих ответов на “Методы Python Tuple” по Python

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

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