100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Essay

Procedural Programming Assignment 3

Rating
-
Sold
-
Pages
27
Grade
A
Uploaded on
12-07-2022
Written in
2018/2019

The document contains all criteria for assignment 3: P2, P4, P5, P6, M2, M3, M4, D2. I received full marks for this assignment.










Whoops! We can’t load your doc right now. Try again or contact support.

Document information

Uploaded on
July 12, 2022
Number of pages
27
Written in
2018/2019
Type
Essay
Professor(s)
Unknown
Grade
A

Content preview

...nment 3\BattleshipLove\BattleshipLove\BattleshipLove.py 1
#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
Import­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
from pprint import pprint as pp
import random
import time
import sys

#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
Variable­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
turns = 0
Answer = "NaN"
Rows = 7
Columns = 7

#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
Welcome­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
print("Welcome to battleship!")
print("gridsize = 7 x 7")
# This part of the code will simply build the grid in a 7x7 format

#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
CreateGrid­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
# This is an example of a function as it returns the computers grid
# This uses parameters of rows and columns to create the grid of the correct size
def create_gridComputer(Rows, Columns):
#Creates the 2D Data Grid
gridComputer = []
for row in range(Rows): # This is a form of iteration
row = []
for col in range(Columns):
row.append(' ')
gridComputer.append(row)
return gridComputer

gridComputer = create_gridComputer(Rows,Columns)

# This is another example of a function as its returning the players grid
def create_gridPlayer(Rows, Columns):
#Creates the 2D Data Grid
gridPlayer = []
for row in range(Rows):
row = []
for col in range(Columns):
row.append(' ')
gridPlayer.append(row)
return gridPlayer

gridPlayer = create_gridPlayer(Rows,Columns)


#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
ProcedureToDisplayGrid­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
def display_gridComputer(gridComputer, Columns):
#Prints the labels for the grid
column_names = 'abcdefghijklmnopqrstuvwxyz'[:Columns]
print(' | ' + ' | '.join(column_names.upper()) + ' |')

, ...nment 3\BattleshipLove\BattleshipLove\BattleshipLove.py 2
for number, row in enumerate(gridComputer):
print(number + 1, '| ' + ' | '.join(row) + ' |')

gridComputer = create_gridComputer(Rows, Columns)
display_gridComputer(gridComputer, Columns)

def display_gridPlayer(gridPlayer, Columns):
#Prints the labels for the grid
column_names = 'abcdefghijklmnopqrstuvwxyz'[:Columns]
print(' | ' + ' | '.join(column_names.upper()) + ' |')
for number, row in enumerate(gridPlayer):
print(number + 1, '| ' + ' | '.join(row) + ' |')

gridPlayer = create_gridPlayer(Rows, Columns)
display_gridPlayer(gridPlayer, Columns)


#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
CompPickShip1­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
def random_row1(gridComputer):
# Function, Makes a random row integer, computer picks random row
return random.randint(1,len(gridComputer))

def random_col1(gridComputer):
# Function, Makes a random column integer, computer picks random column
return random.randint(1,len(gridComputer[0]))


#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
CompPickShip2­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
def random_row2(gridComputer):
#Makes a random row integer, computer picks random row
return random.randint(1,len(gridComputer))

def random_col2(gridComputer):
#Makes a random column integer, computer picks random column
return random.randint(1,len(gridComputer[0]))


#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
CompPickShip3­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
def random_row3(gridComputer):
#Makes a random row integer, computer picks random row
return random.randint(1,len(gridComputer))

def random_col3(gridComputer):
#Makes a random column integer, computer picks random column
return random.randint(1,len(gridComputer[0]))


#­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
PlayerPickShip1­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
def playerpick_row1(gridPlayer):
#Makes a random row integer, player picks random row
playerpickrow1 = int(input("Pick your First Row"))
return playerpickrow1
£6.99
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Both online and in PDF
No strings attached

Get to know the seller
Seller avatar
ItsKenzie
5.0
(9)

Also available in package deal

Thumbnail
Package deal
Procedural Programming Assignments
-
3 2022
£ 19.47 More info

Get to know the seller

Seller avatar
ItsKenzie University
View profile
Follow You need to be logged in order to follow users or courses
Sold
20
Member since
6 year
Number of followers
10
Documents
78
Last sold
2 year ago
IT and Cyber Security Notes For Computing Students

I prepare and sell top quality notes and essays that are concise and easy to understand to fellow computing students. It can be overwhelming when you get your first few projects or assignments, using my notes and essays can help you to better understand the modules and hopefully help you get the grades you want. Thanks for visiting my profile, feedback is always appreciated.

5.0

9 reviews

5
9
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these revision notes.

Didn't get what you expected? Choose another document

No problem! You can straightaway pick a different document that better suits what you're after.

Pay as you like, start learning straight away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and smashed it. It really can be that simple.”

Alisha Student

Frequently asked questions