aboutsummaryrefslogtreecommitdiff
path: root/source_file.py
blob: d55741aaad5318c1faa327b90b44817f6d465f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
def display_msg(msg):
    print(
        '\033[93m', 
        msg, 
        sep='', 
        end='\033[0m\n'
    )

msg = "hello world - Python"

display_msg(msg)