Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 674 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 674 Bytes

BATTLESHIP 🚀 🚢💥💥

PYTHON - Ramp/up closure project, we were asked to make a version of the mythical game: BATTLESHIP

🔩 INTRO

📠📃 typewriter simulator

from os import system
import sys, time

def texto_vintage(texto):
	for letra in texto:
		sys.stdout.write(letra)
		sys.stdout.flush()
		time.sleep(0.000025)	

image


image


image