Repository URL to install this package:
|
Version:
2.0.0-beta3-2-armbian20.08.0-trunk1 ▾
|
# -*- coding: utf-8 -*-
def section_header(title):
title_length = len(title) + 1
print("=" * title_length)
print(title)
print("=" * title_length)
def sub_section_header(title):
print("--- " + title + " ---")