Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

create dictionary from keys and values python

#creating dictionary from keys sequence and value sequence
k=(12,13,14,15,16)
v=(20,21,22,23,24)
d3=dict(zip(k,v))
print(d3)
Comment

python create dictionary from key value

>>> L1 = ['a','b','c','d']
>>> L2 = [1,2,3,4]
>>> d = dict(zip(L1,L2))
>>> d
{'a': 1, 'b': 2, 'c': 3, 'd': 4}
Comment

PREVIOUS NEXT
Code Example
Python :: delete one pymongo 
Python :: TypeError: strptime() argument 1 must be str, not Series 
Python :: from math import python 
Python :: pandas drop column in dataframe 
Python :: pandas remove outliers for multiple columns 
Python :: python generate random string 
Python :: plt.imread python 
Python :: python unzip a zip 
Python :: python operators 
Python :: python random list 
Python :: drop every other column pandas 
Python :: remove all odd row pandas 
Python :: dataframe to dictionary 
Python :: nn.dropout 
Python :: dropout keras 
Python :: custom keyboard telegram bot python 
Python :: how to use turtle in python in python 3.9 
Python :: python define random variables name 
Python :: python check if number is integer or float 
Python :: delete dictionary key python 
Python :: python regular expression remove numbers 
Python :: string formatting in python 
Python :: create pdf from bytes python 
Python :: convert list of list to list python 
Python :: path to create a text file in python 
Python :: non-integer arg 1 for randrange() 
Python :: wait in python 
Python :: create a blank image numpy 
Python :: django save image 
Python :: reverse range in python 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =