Python dictionary is a built-in type that supports key-value pairs.
streetno = {"1": "Sachin Tendulkar", "2": "Dravid", "3": "Sehwag", "4": "Laxman", "5": "Kohli"}
as well as using the dict keyword:
streetno = dict({"1": "Sachin Tendulkar", "2": "Dravid"})
or:
streetno = {} streetno["1"] = "Sachin Tendulkar"
Related Posts:
- Is a Python dictionary an example of a hash table?
- Hashtable, HashMap, HashSet , hash table concept in Java collection framework
- Difference between HashMap and Map in Java..?
- How can I reverse a list in Python?
- How to use filter, map, and reduce in Python 3
- What does enumerate() mean?
- Does Python have a ternary conditional operator?
- What is the difference between Python’s list methods append and extend?
- Iterating over dictionaries using ‘for’ loops
- how to sort pandas dataframe from one column
- Understanding slice notation
- How do I sort a dictionary by value?
- How do I sort a dictionary by value?
- Updating a dictionary in python
- anaconda update all possible packages?
- How to replace NaN values by Zeroes in a column of a Pandas Dataframe?
- TypeError: cannot perform reduce with flexible type
- Python regex AttributeError: ‘NoneType’ object has no attribute ‘group’
- syntaxerror: “unexpected character after line continuation character in python” math
- ValueError : I/O operation on closed file
- How to set environment variables in Python?
- I keep getting this error for my simple python program: “TypeError: ‘float’ object cannot be interpreted as an integer”
- Numpy std calculation: TypeError: cannot perform reduce with flexible type
- Regex: AttributeError: ‘NoneType’ object has no attribute ‘groups’
- Internal Redirect in Flask
- ValueError: shape mismatch: objects cannot be broadcast to a single shape
- How can I remove a key from a Python dictionary?
- Matplotlib automatic legend outside plot
- Syntax behind sorted(key=lambda: …)
- convert nan value to zero
- How to install pip3 on Windows?
- Spyder Python “object arrays are currently not supported”
- Is there a NumPy function to return the first index of something in an array?
- Tkinter scrollbar for frame
- How to compare two dates?
- Python circular importing?
- Is there a difference between `continue` and `pass` in a for loop in python?
- What exactly is the info_Hash in a torrent file
- Create own colormap using matplotlib and plot color scale
- n-grams in python, four, five, six grams?
- The difference between ‘+=’ and ‘=+’?
- How to fix “Attempted relative import in non-package” even with __init__.py
- Sorting a set of values
- Git Bash won’t run my python files?
- Can only use .dt accessor with datetimelike values
- Convert XML to CSV file
- Checking whether pip is installed?
- How to install xgboost in Anaconda Python (Windows platform)?
- Python TypeError must be str not int
- “Unicode Error “unicodeescape” codec can’t decode bytes… Cannot open text files in Python 3
- If Python is interpreted, what are .pyc files?
- Pandas join issue: columns overlap but no suffix specified
- How to downgrade python from 3.7 to 3.6
- How to turn on line numbers in IDLE?
- OpenCV NoneType object has no attribute shape
- How to use an image for the background in tkinter?
- Python locale error: unsupported locale setting
- sklearn Logistic Regression “ValueError: Found array with dim 3. Estimator expected <= 2."
- Sqlite3, OperationalError: unable to open database file
- What does ‘index 0 is out of bounds for axis 0 with size 0’ mean?
- How to return dictionary keys as a list in Python?
- Numpy float64 vs Python float
- ImportError: libGL.so.1: cannot open shared object file: No such file or directory
- Python List object attribute ‘append’ is read-only
- Infinite for loops possible in Python?
- check if a file is open in Python
- RuntimeError: module compiled against API version a but this version of numpy is 9
- Python3 Error: TypeError: Can’t convert ‘bytes’ object to str implicitly
- How to run Pip commands from CMD
- Not able to pip install pickle in python 3.6
- How to print Unicode character in Python?
- Coalesce values from 2 columns into a single column in a pandas dataframe
- Unknown format code ‘f’ for object of type ‘str’- Folium
- Pyinstaller setting icons don’t change
- No module named ‘tqdm’
- Compute a confidence interval from sample data
- Running python script inside ipython
- Can’t get Python to import from a different folder
- How to crop an image in OpenCV using Python
- convert csv file to list of dictionaries
- What’s the difference between “virtualenv” and “-m venv” in creating Virtual environments(Python)
- OperationalError: database is locked
- What is the purpose of the single underscore “_” variable in Python?
- Must have equal len keys and value when setting with an iterable
- print(__doc__) in Python 3 script
- Convert a 1D array to a 2D array in numpy
- How to print a linebreak in a python function?
- Pandas dataframe groupby plot
- Download Returned Zip file from URL
- Python 3 TypeError: must be str, not bytes with sys.stdout.write()
- tkinter gui layout using frames and grid
- inverting image in Python with OpenCV
- Install pip for python 3.5
- How do I represent and work with n-bit vectors in Python?
- How to repeat individual characters in strings in Python
- ValueError: Cannot set a frame with no defined index and a value that cannot be converted to a Series
- SMTP AUTH extension not supported by server
- How to install PyQt4 on Windows using pip?
- How to install PyQt4 on Windows using pip?
- python dictionary error AttributeError: ‘list’ object has no attribute ‘keys’