Hi Guys,
This is gonna be my first post for the blog... Start with the hello world song as a programmer!
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python3
# -*- coding: utf-8 -*-


def hello(name):
    print(f'Hello {name}')


if __name__ == '__main__':
    hello('Karthik')

 
Output
1
2
$ python code/python/hello-world.py
Hello Karthik