First Python program and indentation
Let's start our first program of Python.
Example of Python Program by printing "hello_world"
ubuntu@ip-172-31-44-226:~$ cat python_first.sh
print ("hello_world")
ubuntu@ip-172-31-44-226:~$ python3 python_first.sh
hello world
Unlike in shell, we use ...
mehdipasha.hashnode.dev1 min read