“Klucze funkcjonują w Pythonie” Kod odpowiedzi

Klucze funkcjonują w Pythonie

'''we define a dictionary store which tells us the inventory name and
   the amount of inventory saved in stock'''
store = {"Salt":230,"Flour":540,"Oil":150,"Sugar":210,"Juice":100}
'''the keys function returns us a list of the set keys so we can use them
   to our will'''
keys = store.keys()
print(keys)
Ishwardeep Singh

# Klucze w Python

# keys in python

List_of_Students = {"Jim" : "Roll-32"+","+ "Priority-First",
                    "Yeasin": "Roll-33"+","+ "Priority-2nd",}

print(List_of_Students["Yeasin"])
YEASIN ARAFAT

Odpowiedzi podobne do “Klucze funkcjonują w Pythonie”

Pytania podobne do “Klucze funkcjonują w Pythonie”

Więcej pokrewnych odpowiedzi na “Klucze funkcjonują w Pythonie” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu