Knowledge in python tutorial

Tuple and Dictionary In python

This PDF is about Tuple and Dictionary in Python. This is for beginner who want to learn Python from Scratch.

Python Shell with Command Line

This PDF is about How to use shell in Python. This is for beginner who want to learn Python from Scratch.

Anaconda installation for Python

This PDF is about Anaconda Installation for python. This is for beginner who want to learn Python from Scratch.

Jupyter and Anaconda for Python

This PDF is about Jupyter installation to run Python. This is for beginner who want to learn Python from Scratch.

Python Installation for Windows , Linux and mac

This PDF is about python installation for all type of operating system. This is for beginner who want to learn Python from Scratch.

Advance Python for Cryptology and Java Connection

This PDF conatins Some Advance Topic of Python. These Topics cover Cryptology and Python Connection in Java.

Python Important Questions

This PDF has Important Question for QA in Python. Also how to use python for regular applications.

Send Email Using Python

This PDF for those who want to send mail using Python.

Storing Data In Files In Python

This PDF is about how to store data in Files IN Python.

Testing and Deploying of Python Application

This PDF is about Testing and Deploying Of Python App.

Python Syntax

Python SyntaxExecute Python SyntaxAs we learned in the previous page, Python syntax can be executed by writing directly in the Command Line:>>> print("Hello, World!") Hello, World!Or by creating a python file on the server, using the .py file extension, and running it in the Command Line:C:\Users\Your Name>python myfile.py

Python Indentation

Python IndentationIndentation refers to the spaces at the beginning of a code line.Where in other programming languages the indentation in code is for readability only, the indentation in Python is very important.Python uses indentation to indicate a block of code.Example if 5 > 2: print("Five is greater than two!") Python will give you an error if you skip the indentation:ExampleSyntax Error: if 5 > 2: print("Five is greater than two!")The number of spaces is up to you as a programmer, but it has to be at least one.Example if 5 > 2: print("Five is greater than two!")  if 5 > 2:       print("Five is greater than two!")