Zip Zap and Zoom Game Using Python: A Mini Project Report
Zip Zap and Zoom Game Using Python: A Mini Project Report
INTERNSHIP
IN
PYTHON PROGRAMMING
(MENTOR)
BY
S.TULASI 18R91A05N3
G.PRASHANTHI 18R91A0583
N.RAMYA REDDY 18R91A05M8
JAZZLIKE TECHNOLOGIES
CERTIFICATE
We hereby declare that the mini project entitled “ZIP ZAP AND ZOOM GAME USING
PYTHON” is the work done during the period from 21st June 2021 to 15th August 2021
and is submitted in the partial fulfilment of the requirements for the award of the Internship
in PYTHON PROGRAMMING from JAZZLIKE TECHNOLOGIES.
THE MENTOR
RULES OF GAME
STEP 1
STEP 2
STEP 3
STEP 4
Functions
Decision Making Statements
Loop control statements
Input function
Print function/statement
def ZZZgame(number):
if number % 3 == 0 and
number %5 ==0:
print("Zoom")
elif number % 3 == 0:
print("Zip")
elif number % 5 == 0:
print("Zap")
else:
print("Invalid number!")
players = int(input("Enter number of Players: "))
print(players)
for i in range(1,players+1):
print(“Player”,i, end =' ')
number = int(input("given
number: "))
ZZZgame(number)
OUTPUT
CONCLUSION
The Python programming language can be used in many ways. One of
this is the Zip, Zap and Zoom game which can be implemented by
using Python features and topics like defining the function, function-
call method , conditional statements, printing the requirements needed
for the input and to give the desired result for the game.