Python: Quick Revision
Quick Revision: Python I plan to consolidated the very basics of Python under this blog-post in a handy & concise notes for quick revision. Here is hoping it proves useful to someone. Python: Has 2 versions: 2.x & 3.x (latest & preferred) This course is for the latest version (3.x) Python is special language that doesn't use brackets({}) or semi-colons for code formatting, rather it uses indentation Commenting Code: #Single Line #Multi #line ''' triple quote is a string but can be used for multi line comments as it's ignored by interpreter i...