Python Class 2 - Download and Install Python

preview_player
Показать описание

Download and Install Python, download python interpreter, install python software, set python environment variable, lunch Python IDLE, write & run programs.

Python is a free and open-source programming language, and you can get Python source code easily.

Before you start, you will need Python on your computer.

Check whether you already have an up-to-date version of Python installed by entering python in a command-line window.

Note: Python comes preinstalled on most Linux distributions, and is available as a package on all others.

To install Python Interpreter on your computer (MS Windows):

Python Complete Tutorial

Python Videos PlayList

Python Programming Syllabus

Python Programming Quiz

Python Interview Questions for Fresher
--------------------------------------------------
1. Introduction to Python Programming Language

2. Download and Install Python

Python Environment Setup (Using PyCharm IDE)

3. Python Language Syntax

4. Python Keywords and Identifiers

5. Comments in Python

6. Python Variables

7. Python Data Types

8. Python Operators

9. Python Conditional Statements

10. Python Loops

11. Python Branching Statements

12. Python Numbers

13. String Handling in Python

14. Python Data Structures - Lists

15. Python Data Structures - Sets

16. Python Data Structures - Tuples

17. Python Data Structures - Dictionaries

18. Python User Defined Functions

19. Python Built-in Functions

20. Python Modules

21. Python User Input

22. File Handling in Python

23. Python Date and Time

24. Python Exception Handling

25. Python Regular Expressions

26. Python Object Oriented Programming

27. Inheritance in Python

28. Polymorphism in Python

29. Abstraction in Python
--------------------------------------------------
Комментарии
Автор

Python Complete Tutorial

Python Videos PlayList

Python Programming Syllabus

Python Programming Quiz

Python Interview Questions for Fresher

1. Introduction to Python Programming Language

2. Download and Install Python

Python Environment Setup (Using PyCharm IDE)

3. Python Language Syntax

4. Python Keywords and Identifiers

5. Comments in Python

6. Python Variables

7. Python Data Types

8. Python Operators

9. Python Conditional Statements

10. Python Loops

11. Python Branching Statements

12. Python Numbers

13. String Handling in Python

14. Python Data Structures - Lists

15. Python Data Structures - Sets

16. Python Data Structures - Tuples

17. Python Data Structures - Dictionaries

18. Python User Defined Functions

19. Python Built-in Functions

20. Python Modules

21. Python User Input

22. File Handling in Python

23. Python Date and Time

24. Python Exception Handling

25. Python Regular Expressions

26. Python Object Oriented Programming

27. Inheritance in Python

28. Polymorphism in Python

29. Abstraction in Python

gcreddy
Автор

Class Notes:

Python Class 2: Python Download and Installation

Python Installation:

> Launch Python Website (python.org)
> Download your operating system compatible 'Python Software'
> Install the Software and set the Path while installation.
> Launch Python IDLE (Python Shell)
> Write a sample program and run.

Two modes of programming in Python.
1. Interactive Mode
2. Script/File Mode

Example:

x=100
y=20
print (x+y) #120
print ('Hello')
print ("Hello")
print ('''Hello''')
print ("""Hello""")


if x>y:
print ("X is Big Number")
print ("Python")

x=100
print(x) #100

x=10.23
print(x) #10.23

x=True
print(x) #True

x="India"
print(x) #India

1. Java Code block

{}

if (condtion)
{
statement/s
.
.
}

2. VBScript code block

If (condition) Then
statement/s
.
.
End If

3. Python code block

if condition:
statement/s
.
.

Python Syllabus

1. Python Installation/Environment Setup

2. Python basic syntax

Modes of programming
Python Keywords
Python Identifiers
Keywords/Reserved Words
Lines and Indentation
Comments
Quotations

Programs can be written using Keywords, Identifiers, data/values, and Special characters

Independent
Code blocks
Comments

3. Python Variables

Create/Declare Variables
Assign Values to Variables
Variable types
Variable naming rules

4. Data Types

Python Buil-in data types

5. Python Operators
Arithmetic Operators
Comparison/Relational Operators
Logical Operators, etc,

6. Python Control Flow
Decision making/Conditional statements
Loop statements
Branching statements

gcreddy