https://www.gcreddy.com/2022/01/python-environment-setup.html
Python Development Environment / Python Programming Environment/Python Environment
It is required to write & execute Python programs
Steps for Computer Programming (Programming Languages)
1. Write a Program
2. Compile the Program
3. Run the Program
Steps for Computer Programming (Scripting Languages)
1. Write a Program
2. Run the Program
The editor is required - to write & execute programs
Compiler/Interpreter is required for compiling programs
-----------------------------------------
Personal use/Learning/Practice:
i. Launch Python official website (python.org)
ii Download your OS compatible Python software,
iii. Install the Software, and set the Path while installation
iv. Launch Python IDLE/Shell
v. Write & execute/run programs
------------------------------------
Commercial use/Software Development:
i. Install Python Software
ii. Install PyCharm IDE, while installation, add the Python interpreter path to Python Project.
iii. Configure the PyCharm IDE
iv. You can integrate the software with Python
------------------------------------
PyCharm IDE provides Syntax Guidance, Context help, and Other software integration with python, etc,
-----------------------------------------------
A Sample Python Program
a=100
b=10.23
c="India"
d =False
print (a, b, c, d)
print("")
x=123
y=int(input("Enter a Value: "))
print(x+y)
for i in range (1, 11): # Print 1 to 10 Numbers
print (i)
------------------------------------------------
Python Complete Tutorial
https://www.gcreddy.com/2021/07/python-tutorial.html
Python Video Tutorial
https://youtu.be/34P77IG_1vM
Python Programming Syllabus
https://www.gcreddy.com/2021/05/python-programming-syllabus.html
Python Programming Quiz
https://www.gcreddy.com/2021/11/python-programming-quiz.html
Python Interview Questions for Fresher
https://gcreddy.info/python-interview-questions-for-fresher/
--------------------------------------------------
1. Introduction to Python Programming Language
https://www.gcreddy.com/2021/07/introduction-to-python-programming-language.html
2. Download and Install Python
https://www.gcreddy.com/2021/07/download-and-install-python.html
3. Python Language Syntax
https://www.gcreddy.com/2021/07/python-language-syntax.html
4. Python Keywords and Identifiers
https://www.gcreddy.com/2021/07/python-keywords-and-identifiers.html
5. Comments in Python
https://www.gcreddy.com/2021/11/python-comments.html
6. Python Variables
https://www.gcreddy.com/2021/07/python-variables.html
7. Python Data Types
https://www.gcreddy.com/2021/07/python-data-types.html
8. Python Operators
https://www.gcreddy.com/2021/07/python-operators.html
9. Python Conditional Statements
https://www.gcreddy.com/2021/07/python-conditional-statements.html
10. Python Loops
https://www.gcreddy.com/2021/07/python-loops.html
11. Python Branching Statements
https://www.gcreddy.com/2021/11/python-branching-statements.html
12. Python Numbers
https://www.gcreddy.com/2021/11/python-numbers.html
13. String Handling in Python
https://www.gcreddy.com/2021/07/string-handling-in-python.html
14. Python Data Structures - Lists
https://www.gcreddy.com/2021/07/python-lists.html
15. Python Data Structures - Sets
https://www.gcreddy.com/2021/11/python-sets.html
16. Python Data Structures - Tuples
https://www.gcreddy.com/2021/07/python-tuples.html
17. Python Data Structures - Dictionaries
https://www.gcreddy.com/2021/07/python-dictionaries.html
18. Python User Defined Functions
https://www.gcreddy.com/2021/12/python-functions.html
19. Python Built-in Functions
https://www.gcreddy.com/2021/12/python-built-in-functions.html
20. Python Modules
https://www.gcreddy.com/2021/07/python-modules.html
21. Python User Input
https://www.gcreddy.com/2021/11/python-user-input.html
22. File Handling in Python
https://www.gcreddy.com/2021/09/file-handling-in-python.html
23. Python Date and Time
https://www.gcreddy.com/2021/12/python-date-and-time.html
24. Python Exception Handling
https://www.gcreddy.com/2021/12/python-exception-handling.html
25. Python Regular Expressions
https://www.gcreddy.com/2021/12/python-regular-expressions.html
26. Python Object Oriented Programming
https://www.gcreddy.com/2021/12/python-object-oriented-programming.html
27. Inheritance in Python
https://www.gcreddy.com/2021/12/inheritance-in-python.html
28. Polymorphism in Python
https://www.gcreddy.com/2022/01/polymorphism-in-python.html
29. Abstraction in Python
https://www.gcreddy.com/2022/01/abstraction-in-python.html
--------------------------------------------------