14 lines
227 B
Python
14 lines
227 B
Python
|
|
HELP_LINES = []
|
|
|
|
with open('game.py', 'r') as f:
|
|
for line in f.readlines():
|
|
if line.strip().startswith('## '):
|
|
HELP_LINES.append(line.strip()[3:])
|
|
|
|
|
|
for line in HELP_LINES:
|
|
print(line)
|
|
print()
|
|
|