python 3:
Write a program to prompt the user for a word and a number. Add that word and number to a dictionary. If the word already exists in the dictionary, print "already entered". When the user types the word list, display all entered words and numbers from the dictionary. When the user types end, end the program.
IDE Used: Pycharm
Python version: Python 3.7.4
Note: All variable names are used in such a way for better understanding. It can be changed according to the user's choice. Comments are given in bold and italic. Please refer to code snippets for a better understanding of indentation.
Program code
# menu choice of the program
print("Enter\n'add' to insert \n'list' to show all values \n'end' to stop")
# to store user choice
user_ch = "Null"
# creating empty dictionary
samp_dict = {}
# continue while loop
# until user choice is end
while user_ch != "end" :
# asking user to enter choice
user_ch = input("Choice : ")
# if choice is add
if user_ch == "add" :
# then get the input word and number
inp_word = input("Word : ")
inp_num = int(input("Number : "))
# checking if already entered
if inp_word in samp_dict:
print("Already Entered!")
# if not
else:
# inserting in dictionary
samp_dict[inp_word] = inp_num
# if user choice is list
elif user_ch == "list":
# display all the values
for inp_word in samp_dict:
print(inp_word,samp_dict[inp_word])
# if choice end then quit
elif user_ch == "end":
print("Quiting...")
Code Snippets


Sample output run

python 3: Write a program to prompt the user for a word and a number. Add...
Write a program IN PYTHON that checks the spelling of all words in a file. It should read each word of a file and check whether it is contained in a word list. A word list available below, called words.txt. The program should print out all words that it cannot find in the word list. Requirements Your program should implement the follow functions: main() The main function should prompt the user for a path to the dictionary file and a...
Write a "PYTHON" program to prompt the user to enter a fist name, last name, student ID and GPA. Create a dictionary with the data. Print out the data. Then remove the GPA and print again.
USING PYTHON - Write a program that calls a function that prompts the user to enter a real number. The function should verify that the user entered a valid real number, and should prompt the user to re-enter any invalid input. After a valid real number has been entered, the function should return the number as a number. To test your function, from a main function, call the function two separate times and print the sum of the two numbers...
Please complete the following: Write a Python script to do the following: 1. Ask the use to enter several sentences, one at a time in a loop). To end the sentence entry, the user enters a blank (empty) sentence. 2. Extract each word from each sentence and put it in a list. This will require at least one loop to go through each sentence in the list. It is up to you how you want to get the words in...
(Python Programming)Write a Python program that prompts the user to enter a list of words and stores in a list only those words whose first letter occurs again within the word (for example, 'Baboon'). The program should display the resulting list.
extra credit 1 Write a program that will display the following menu and prompt the user for a selection: A) Add two numbers B) Subtract two numbers C) Multiply two numbers D) Divide two numbers X) Exit program The program should: display a hello message before presenting the menu accept both lower-case and upper-case selections for each of the menu choices display an error message if an invalid selection was entered (e.g. user enters E) prompt user for two numbers...
(Python 3) Write a program that reads the contents of a text file. The program should then create a dictionary in which the keys are individual words found in the file and the values are the number of times each word appears and a list that contains the line numbers in the file where the word (the key) is found. Then the program will create another text file. The file should contain an alphabetical listing of the words that are...
Write a Python program to prompt the user for an integer number. Assign this integer to a variable X. Then assign a variable Y to the X**3 (X to the power 3). Finally, assign the variable Z to the square root of Y and print the values of X, Y, and Z as shown in the example below. Use main() function to define and call the program. Example: Enter an integer number: 3 X = 3 if Y=X**3 then Y...
Write a program in Java language to prompt the user to enter 3 integers (A, B, and C) then display these numbers from the lowest to the highest (sorted ascendingly) . Note that there are 6 different cases to handle proper order. As an example, a user entered 10 for A, 5 for B and 14 for C: the output of the program should look like this Enter number A? 10 Enter number B? 5 Enter number C? 14 Your...
Write a c++ complete program to meet the specifications. The program should prompt the user for a positive integer. The program should print a message whether the integer is even or odd. The looping should end when the user enters a negative number. The negative number will not be tested for even or odd. The program will print out a message of how many numbers were entered (not counting the negative number) and how many even and odd numbers were...