Answers for "list en python"

1

listas en python

>>> factura = ['pan', 'huevos', 100, 1234]
>>> factura
['pan', 'huevos', 100, 1234]
Posted by: Guest on April-13-2021
0

indice d'un element dans une liste python

week = ['monday','tuesday','wednesday']

week.index('tuesday')
>>> 1

"""Warning => error if the element isn't in the list"""
Posted by: Guest on July-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language