Skip to content

Commit ab2ded2

Browse files
committed
Birthday Dictionaries
1 parent af51eda commit ab2ded2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Exercise-31-Guess-Letters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def main():
9696
if __name__ == "__main__":
9797
main()
9898

99-
99+
100100

101101
# >>> %Run test.py
102102
# Welcome to Hangman!

Exercise-33-Birthday-Dictionaries.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@
2222
2323
'''
2424
# Solution
25+
2526
def show_all_in_dict(dict):
2627
"""
2728
Print all the key in dict.
29+
30+
2831
2932
Arguments:
3033
dict -- a dictionary needed to be print it's key.
@@ -38,6 +41,8 @@ def show_all_in_dict(dict):
3841

3942
# Useless
4043
def search(query, dict):
44+
45+
4146
"""
4247
Search the person's birthday is in the dict or not.
4348

0 commit comments

Comments
 (0)