-
Notifications
You must be signed in to change notification settings - Fork 0
/
headers.py
25 lines (19 loc) · 893 Bytes
/
headers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
def main_title():
print('---------------------------------------------------------------------------')
print('- WELCOME TO ROCK PAPER SCISSORS -')
print('---------------------------------------------------------------------------')
print()
def indefinite_mode_title():
print()
print('---------------------------------------------------------------------------')
print('- WELCOME TO INDEFINITE MODE -')
print('---------------------------------------------------------------------------')
print()
def line_break():
print()
print('---------------------------------------------------------------------------')
print()
def round_title(num):
print()
print(f'---------------------------------ROUND {num}----------------------------------')
print()