Delete display.py

This commit is contained in:
Dimitris Marakomihelakis 2021-02-22 10:09:48 +02:00 committed by GitHub
parent 1af9f6641e
commit 49bf0fd53c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,11 +0,0 @@
def underlined(text, symbol = '-'):
print()
print(text)
print(symbol * len(text))
def bordered(text, symbol = '*'):
print()
print(symbol * (len(text) + 4))
print(symbol, text, symbol)
print(symbol * (len(text) + 4))
print()