“Metody krotek Pythona” Kod odpowiedzi

Tuple Python

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

Tuplein Python

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

Coder Cat

Metody krotek Pythona

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

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

Tuple in Python

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

Tuple Python

tupel python
Ma

Metody krotek Pythona

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

Odpowiedzi podobne do “Metody krotek Pythona”

Pytania podobne do “Metody krotek Pythona”

Więcej pokrewnych odpowiedzi na “Metody krotek Pythona” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu