Print hello world
# first thing every programmer starts fro
# displaying title in the consol
print("hello world")
# displaying title in the consol
print("hello world")
Print text image
print(' _______________')
print('< Learn me Python >')
print(' ---------------')
print(' \ ^__^')
print(' \ (oo)\_______')
print(' (__)\ )\/\')
print(' ||----w |')
print(' || ||')
print('< Learn me Python >')
print(' ---------------')
print(' \ ^__^')
print(' \ (oo)\_______')
print(' (__)\ )\/\')
print(' ||----w |')
print(' || ||')
Print multi line text
print("""
_______________
< Learn me Python >
---------------
\ ^__^
\ (oo)\_______
(__)\ )\/\\
||----w |
|| ||
""")
_______________
< Learn me Python >
---------------
\ ^__^
\ (oo)\_______
(__)\ )\/\\
||----w |
|| ||
""")