0% found this document useful (0 votes)
81 views9 pages

Ip Project

This document is a student project submission for a Python game. It includes an introduction stating the project title and software/hardware requirements. It also includes sections about Python programming language basics, the code for a Mad Libs game in Python, the output of the game, and a bibliography. The student has developed a simple Mad Libs game in Python under the guidance of their teacher and is submitting it as their Informatics Practices project for the 2023-2024 academic year.

Uploaded by

charul sahu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
81 views9 pages

Ip Project

This document is a student project submission for a Python game. It includes an introduction stating the project title and software/hardware requirements. It also includes sections about Python programming language basics, the code for a Mad Libs game in Python, the output of the game, and a bibliography. The student has developed a simple Mad Libs game in Python under the guidance of their teacher and is submitting it as their Informatics Practices project for the 2023-2024 academic year.

Uploaded by

charul sahu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

KRISHNA PUBLIC SCHOOL

UTAI

Session 2023-2024
INFORMATICS PRACTICES
PROJECT
Topic :- Python Game

GUIDED BY:- SUBMITTED BY:-

Mrs. Rashmi Charul Sahu


Dewangan Class – XI ‘A’
Roll no. 11102
AUTHENTIFICATION CERTIFICATE
STUDENT CERTIFICATE

The work embodied on this dissertation entitled


“Python game” has been carried out by me under the
supervision of Mrs. Rashmi Dewangan. This work is
original as per latest CBSE’s Curriculum 2023-2024.

………………………
Date: Signature and Name of
the Candidate
Place: Durg, Chhattisgarh
Charul Sahu

Roll no. 11102


CERTIFICATE OF PROGRAMME
COUNSELLER

I certify that the candidate “Charul Sahu” has planned and


conducted the development study entitled “Python game”
under the guidance and supervision of Mrs. Rashmi
Dewangan and that the report submitted here with a
bonafide work done by the candidate in Krishna Public
School, Utai from Nov. 2023 to Jan. 2024.

………………………………………
Signature of Programme Incharge
Mrs. Rashmi Dewangan
INDEX

1. Introduction 2

2. About Python 3

3. Code 4

4. Output 5

5. Bibliography 6
INTRODUCTION

Project Title: Python Game

Software Requirement:
1) Python IDLE 3.11

Hardware Requirement:
1) Minimum Ram: 256 MB
2) Minimum Hard Disk Space: 1 GB
PYTHON
Python is a general-purpose high-level programming language.
Python was named after the British comedy Many Python's Flying
Circus the National Research institute for Mathematics and
Computer Science in the Netherlands. Further, it has since been
developed by a large team of volunteers and is freely available from
the Python Software Foundation.

Python derived from many other languages including ABC, Modula 3,


Unix shell, and other scripting languages. It is portable, freeware,
high-level and a powerful programming language. It can be used with
all types of operating systems. Its well designed syntax and dynamic
typing make it an ideal language for scripting and rapid application
development for prototyping with ease in many areas.
CODE
MAD LIBS GENERATOR
loop = 1

while(loop<2):

noun = input("Type a noun:")

p_noun = input("Type a plural noun:")

noun2 = input("Type another noun:")

place = input("Type the name of a place:")

adjective = input("Type an adjective (Describing word):")

noun3 = ("Now, again type a noun :")

print ("------------------------------")

print("Be kind to your", noun, " -footed", p_noun)

print("For a duck may be somebody 's", noun2,",")

print("Be kind to your", p_noun, "in", place)

print("Where the weather is always", adjective,".")

print()

print("You may think this is the", noun3,",")

print("Well it is>")

print("---------------------------------")

loop = loop+1
OUTPUT
Type a noun:alice

Type a plural noun:umbrella

Type another noun:friend

Type the name of a place:school

Type an adjective (Describing word):fragrant

------------------------------

Be kind to your alice -footed umbrella

For a duck may be somebody 's friend ,

Be kind to your umbrella in school

Where the weather is always fragrant .

You may think this is the Now, again type a noun : ,

Well it is>

---------------------------------
BIBLIOGRAPHY

o Wikipedia
o Kips Informatics Practices 11

You might also like