Answers for "dictionary function in python"

5

dictionary in python

dict = {"apple": "fruit", "ball": "object", "cricket": "sports"}

#how to print?

print(dict["cricket"])
Posted by: Guest on January-11-2022
1

dictionary in python

myDict = {
    "Fast": "In a Quick Manner",
    "Hasya": "A Coder",
    "Marks": [1, 2, 5],
    "anotherdict": {'hasya': 'Player'}
}

# print(myDict['Fast'])
# print(myDict['Hasya'])
myDict['Marks'] = [45, 78]
print(myDict['Marks'])
print(myDict['anotherdict']['hasya'])
Posted by: Guest on January-12-2022
2

dictionary in python

# Dictionaries in Python

ages = {"John": 43, "Bob": 24, "Ruth": 76} # Marked by { at beginning and a } at end

# ^^^ Has sets of keys and values, like the 'John' and 43 set. These two values must be seperated by a colon

# ^^^ Sets of values seperated by commas.
Posted by: Guest on October-18-2020
1

dictionary in python

Dict = {"name": 'Izhaan', "salary": 1234, "age": 23} 
print("nDictionary with the use of string Keys: ") 
print(Dict)
Posted by: Guest on November-18-2020
1

dictionary in python

#a dictionary
dict = {
  "key": "value",
  "other_key": "value"
}

#get a value from the dictionary using the key
print(dict["key"])

#you can also get a value from the dictionary using a normal index:
print(dict[1])
Posted by: Guest on February-11-2021
1

dictionary in python

shapes={"square": 90, "triangle": 60}
Posted by: Guest on November-11-2020

Code answers related to "dictionary function in python"

Python Answers by Framework

Browse Popular Code Answers by Language