Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

iterar 2 listas en simultaneo python

a = [1, 2]
b = ["Uno", "Dos"]
c = zip(a, b)

for numero, texto in zip(a, b):
    print("Número", numero, "Letra", texto)
    
# Número 1 Letra Uno
# Número 2 Letra Dos
Comment

PREVIOUS NEXT
Code Example
Python :: Send Variable Over In Python Views 
Python :: pyhton transpose without changing column and row names 
Python :: how to print tic tac toe border on terminal in python 
Python :: Sending Data in Unstructured File Form 
Python :: pytrend 
Python :: aws django create superuser 
Python :: python code to executable online converter 
Python :: welcoming users using discord.py 
Python :: django muti user for 3 users 
Python :: calculating expressions with sqrt signs 
Python :: calculate values in a certain percentile pandas 
Python :: python file operation 
Python :: python Pyramid Patterns half 
Python :: the rest of steps in the link below 
Python :: python developer 
Python :: spotify meist gespielte lieder sehen 
Python :: repeat printing rows excel using python whenever i run the script 
Python :: choose a random snippet of text 
Python :: voting classifier grid search 
Python :: How many handshakes for all the people in your class? python code 
Python :: fredo illos 
Python :: numpy print full array to srdout 
Python :: Only show legend of inner donut 
Python :: max value from multiple columns pandas 
Python :: check it two words are anagram pyhton 
Python :: change the Values to Numpy Array 
Python :: odoo 8 request.session.authenticate 
Python :: InvalidArgumentError: logits and labels must be broadcastable: logits_size=[16,3] labels_size=[16,2] [[node categorical_smooth_loss/softmax_cross_entropy_with_logits 
Python :: python regular expression path 
Python :: axes in array 
ADD CONTENT
Topic
Content
Source link
Name
8+1 =