Basic Syntax of Python
Python is case sensitive . Hence a variable with name codingavengers is not same as CodingAvengers For path specification, python uses forward slashes . Hence if you are working with a file, the default path for the file in case of Windows OS will have backward slashes, which you will have to convert to forward slashes to make them work in your python script. For window's path C:\folderA\folderB relative python program path should be C:/folderA/folderB In python, there is no command terminator , which means no semicolon ; or anything. So if you want to print something as output, all you have to do is: print "Hello, World!" Oops! we just shared the first python program too with you. Yes, just one single statement. In one line only a single executable statement should be written and the line change act as command terminator in python. To write two separate executable statements in a single line , you should...