











Solution:
Please find below the code, screenshot and output screens for
program.
1. Code that can be copied.
#Casino_Game
import random
#Condition to be checked
def pull(user_bet):
print("whirrrrr.....and your pull is....")
priority=[38,40,7,15]
list_pull=["BAR","7","Cherries", "Space"]
new_list=random.choices(list_pull, priority, k=3)
print(new_list)
return new_list
def get_bet():
print("----------------------Run--------------------------------")
for i in range(40):
user_bet=input("How much would you like to bet (1-50) or 0 to quit!
")
try:
if user_bet=="0":
print("Thanks for coming to Casino Loceff")
break
elif int(user_bet)>0 and int(user_bet)<51:
k=pull(user_bet)
display(k)
except ValueError:
print("Enter valid values")
#Slot machine pull.
def display(new_list):
if new_list[0]=="Cherries" and new_list[1]!="Cherries":
print("\nCongratulations, You WIN: ",5*user_bet)
elif new_list[0]=="Cherries" and new_list[1]=="Cherries" and
new_list[2]!="Cherries":
print("\nCongratulations, You WIN: ",15*user_bet)
elif new_list[0]=="Cherries" and new_list[1]=="Cherries" and
new_list[2]=="Cherries":
print("\nCongratulations, You WIN: ",30*user_bet)
elif new_list[0]=="BAR" and new_list[1]=="BAR" and
new_list[2]!="BAR":
print("\nCongratulations, You WIN: ",50*user_bet)
elif new_list[0]=="7" and new_list[1]=="7" and
new_list[2]!="7":
print("\nCongratulations, You WIN: ",100*user_bet)
else:
print("Sorry you loose...")
#Calling to initialize the game
get_bet()
2. Screenshot of the code.

3. Output screens.
Please note:
1. try block is used to deal with user input other than o and
50.
2. Program will run 40 times, for quitting 0 should be
used.
Thanks.
please use python and provide run result, thank you! click on pic to make it bigger...
For this lab you will write a Java program that plays the dice game High-Low. In this game a player places a bet on whether the sum of two dice will come up High (totaling 8 or higher), Low (totaling 6 or less) or Sevens (totaling exactly 7). If the player wins, they receive a payout based on the schedule given in the table below: Choice Payout ------ ------ High 1 x Wager Low 1 x Wager Sevens 4 x...
IN PYTHON Assignment Overview This assignment will give you experience on the use of classes. Understand the Application The assignment is to first create a class calledTripleString.TripleStringwill consist of threeinstance attribute strings as its basic data. It will also contain a few instance methods to support that data. Once defined, we will use it to instantiate TripleString objects that can be used in our main program. TripleString will contain three member strings as its main data: string1, string2, and string3....
Java Program Note: no break statements or switch staements High, Low, Sevens For this lab you will write a Java program that plays the dice game High-Low. In this game a player places a bet on whether the sum of two dice will come up High (totaling 8 or higher), Low (totaling 6 or less) or Sevens (totaling exactly 7). If the player wins, they receive a payout based on the schedule given in the table below: Choice Payout ------...
Python 3 coding with AWS/Ide. Objective: The purpose of this lab is for you to become familiar with Python’s built-in text container -- class str-- and lists containing multiple strings. One of the advantages of the str class is that, to the programmer, strings in your code may be treated in a manner that is similar to how numbers are treated. Just like ints, floats, a string object (i.e., variable) may be initialized with a literal value or the contents...
Just do program 6 using c++ which are printf and scanf. Please
don’t use cout and cin.
Program 4: A slot machine has three windows. A random fruit is picked for each window from cherry apple, lemon, and orange. If all three windows match, the user wins 8 times the bet amount. If the first two windows only are cherries, the user wins 3 times the bet amount. If the first window is a cherry and the second window is...
Write a Python program to create userids: You work for a small company that keeps the following information about its clients: • first name • last name • a user code assigned by your company. The information is stored in a file clients.txt with the information for each client on one line (last name first), with commas between the parts. In the clients.txt file is: Jones, Sally,00345 Lin,Nenya,00548 Fule,A,00000 Your job is to create a program assign usernames for a...
I am supposed to reduce redundancy in the code and also make unknown inputs, output "unknown". Step 1: Your development manager likes your program but is concerned about code duplication. Roger left a note on your desk, asking about using a feature for automatically converting strings to enumerations. Change your ToCommand method to employ this JAVA library method. (Hint: Look for a valueOf method). After converting your ToCommand method, run the program and enter an invalid command (one that does...
programming language: C++ *Include Line Documenatations* Overview For this assignment, write a program that will simulate a game of Roulette. Roulette is a casino game of chance where a player may choose to place bets on either a single number, the colors red or black, or whether a number is even or odd. (Note: bets may also be placed on a range of numbers, but we will not cover that situation in this program.) A winning number and color is...
Please use Python 3, thank you~ Write a program that: Defines a function called find_item_in_grid, as described below. Calls the function find_item_in_grid and prints the result. The find_item_in_grid function should have one parameter, which it should assume is a list of lists (a 2D list). The function should ask the user for a row number and a column number. It should return (not print) the item in the 2D list at the row and column specified by the user. The...
C Code Create a tool in which a user can enter a string (up to 25 characters) and choose how they wish to manipulate the string from a menu your program will display (see the run-through). The program will continue to ask for commands until the user enters the “quit” command. The commands are: • “Replace All” If a user types “replace all” using ANY sort of capitalization, your program will prompt the user to enter the character to change...