this code should be in python: The person running the file will be asked to choose one of these games but for each game it has its own main like (main1, main2, etc.). These functions are called when the user selects a game from 1 to 5 (If the user selects game 1, main1 will be executed). This should be in one python file. my code for each game: #game 1 you're supposed to input a sequence and the values are supposed to be shown how many times they are shown: input = input("Please enter your sequence:") print("In the sequence we saw:") for i in range(10): k = 0 k = sum(int(c) == i for c in input) if k > 0: print("{}: {} time(s)".format(i, k)) #game 2 is to supposed to enter 2 values as a range and it shows the 3 multipication in that range: num1 = int(input("Enter Number 1:")) num2 = int(input("Enter Number 2:")) if(num1>num2): for i in range(num2+1,num1): if(i%3 == 0): print(i) if(num1

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

this code should be in python:

The person running the file will be asked to choose one of these games but for each game it has its own main like (main1, main2, etc.). These functions are called when the user selects a game from 1 to 5 (If the user selects game 1, main1 will be executed). This should be in one python file.

my code for each game:

#game 1 you're supposed to input a sequence and the values are supposed to be shown how many times they are shown:

input = input("Please enter your sequence:")

print("In the sequence we saw:")

for i in range(10):
k = 0
k = sum(int(c) == i for c in input)
if k > 0:
print("{}: {} time(s)".format(i, k))

#game 2 is to supposed to enter 2 values as a range and it shows the 3 multipication in that range:

num1 = int(input("Enter Number 1:"))
num2 = int(input("Enter Number 2:"))

if(num1>num2):
for i in range(num2+1,num1):
if(i%3 == 0):
print(i)

if(num1<num2):
for i in range(num1+1,num2):
if(i%3 == 0):
print(i)

#game 3 is a program that receives a string from the user and prints the longest word in that string and its length:

def largestWord(s):
s = sorted(s, key = len)
print("Result : ",s[-1],len(s[-1]))

if __name__ == "__main__":
s = input("Enter the string: ")
l = list(s.split(" "))

largestWord(l)

# game 4 is a function that receives a list as its only parameter. Inside the body of the function and removes all the duplicate items from the list:

def remove_duplicates (Data):
new_Data = []
for item in Data:
if (item not in new_Data):
new_Data.append(item)
return(new_Data)

print(remove_duplicates(["hey","swim","day","night","swim"]))

#game 5 function that receives a list of strings as its only parameter. Inside the body of the function and it finds the first palindromic word and returns it:

def palinCheck(lst):
for i in lst:
if i==i[::-1]:
return i
return ""
lst=["abc","hello","car","level","mom"]

print(palinCheck(lst))

Expert Solution
steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY