get() method in dict ?
# Phương thức get() trên dicts và giá trị mặc định
name_id = {
382: "Alice",
590: "Bob",
951: "Dilbert",
}
def hello(uid):
return f'''Hi!, {name_id.get(uid, "there") }'''
print(hello(382)) # Hi!, Alice
print(hello(333333)) # Hi!, there
name_id = {
382: "Alice",
590: "Bob",
951: "Dilbert",
}
def hello(uid):
return f'''Hi!, {name_id.get(uid, "there") }'''
print(hello(382)) # Hi!, Alice
print(hello(333333)) # Hi!, there
Liked by:
dainganxanh
+1 answer
Read more