Syntax of Python
What is Syntax ? Computers are machines that can interpret your instructions only if you type them in the exact format that the computer expects. This expected format - the spelling, formatting and grammar - is called the 'Syntax'. For example : #This function divides two numbers def divide(x,y): return x/y ...