DOWNLOAD LINK BELOW..
Download all my written source code..
What is Python?
Python is a popular programming language. It was created by Guido van Rossum, and released in 1991. It is used for: web development (server-side), software development, mathematics, system scripting.What can Python do?
(i) Python can be used on a server to create web applications.
(ii) Python can be used alongside software to create workflows.
(iii) Python can connect to database systems. It can also read and modify files.
(iV) Python can be used to handle big data and perform complex mathematics.
(v) Python can be used for rapid prototyping, or for production-ready software development.
Python Syntax compared to other programming languages
(i) Python was designed for readability, and has some similarities to the English language with influence from mathematics.
(ii) Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses.
(iii)Python relies on indentation, using whitespace, to define scope; such as the scope of loops, functions and classes. Other programming languages often use curly-brackets for this purpose.
Example
print("Hello, World!")
Python Variables
Variable is a name that is used to refer to memory location. Python variable is also known as an identifier and used to hold value. In Python, we don't need to specify the type of variable because Python is a infer language and smart enough to get variable type. Variable names can be a group of both the letters and digits, but they have to begin with a letter or an underscore. It is recommended to use lowercase letters for the variable name. Rahul and rahul both are two different variables.
Identifier Naming
Variables are the example of identifiers. An Identifier is used to identify the literals used in the program. The rules to name an identifier are given below.
1>. The first character of the variable must be an alphabet or underscore ( _ ).
2>. All the characters except the first character may be an alphabet of lower-case(a-z), upper-case (A-Z), underscore, or digit (0-9).
3>. Identifier name must not contain any white-space, or special character (!, @, #, %, ^, &, *).
4>. Identifier name must not be similar to any keyword defined in the language.
5>. Identifier names are case sensitive; for example, my name, and MyName is not the same.
6>. Examples of valid identifiers: a123, _n, n_9, etc.
7>. Examples of invalid identifiers: 1a, n%4, n 9, etc.Machine Learning
Machine Learning is making the computer learn from studying data and statistics. Machine Learning is a step into the direction of artificial intelligence (AI). Machine Learning is a program that analyses data and learns to predict the outcome.