squadran2003 / battleship

command line version of the famous battleship game

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

battleship

command line version of the famous battleship game

The clear screen method

# if the script is run in the console change

def clear_screen(self):
  print("\033c", end="")

# to

import os

def clear_screen(self):
	try:
    os.system('cls')
  except:
    os.system('clear')

To run the game

run the script battleship.py

About

command line version of the famous battleship game

License:MIT License


Languages

Language:Python 100.0%