We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1c093e commit 839739bCopy full SHA for 839739b
Python_Begginer_Projects/Intermediate/words_dictionary.py
@@ -37,15 +37,18 @@ def Main():
37
38
if user_choice in options:
39
word = input('Enter a word: ')
40
+
41
if user_choice == 1:
42
Meaning(word)
43
elif user_choice == 2:
44
Synonym(word)
45
else:
46
Antonym(word)
47
48
elif user_choice == 4:
49
Quit()
50
break
51
52
53
print('Enter a choice(1-4)')
54
@@ -54,10 +57,5 @@ def Main():
57
55
58
print('')
56
59
-
60
61
62
63
-Main()
+# Calling the main function
+Main()
0 commit comments