“Agregar declaraciones if y para bucle en Pyhton con tuple” Código de respuesta

Agregar declaraciones if y para bucle en Pyhton con tuple

name_of_students = ("Jim" , "yeasin" , "Arafat")
print(name_of_students.index('Arafat'))
#adding for loop with tuple
for x in name_of_students:
    print(x)
#adding if statement with tuple
if "yeasin" in name_of_students:
    print("Hello Yeasin")
YEASIN ARAFAT

Agregar declaraciones if en Pyhton con tuple

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

#adding if statement with tuple

if "yeasin" in name_of_students:
    print("Hello Yeasin")
YEASIN ARAFAT

Respuestas similares a “Agregar declaraciones if y para bucle en Pyhton con tuple”

Preguntas similares a “Agregar declaraciones if y para bucle en Pyhton con tuple”

Más respuestas relacionadas con “Agregar declaraciones if y para bucle en Pyhton con tuple” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código