50 pts +Brainlyest
I want to start learning python and I don't have any teacher.
Please can anyone explain the basics of python.
Answers
Introduction and Setup
If you are on Windows OS download Python by Clicking here and now install from the setup and in the start menu type IDLE.IDLE, you can think it as an Python’s IDE to run the Python Scripts.
It will look somehow this :
If you are on Linux/Unix-like just open the terminal and on 99% linux OS Python comes preinstalled with the OS.Just type ‘python3’ in terminal and you are ready to go.
It will look like this :
The ” >>> ” represents the python shell and its ready to take python commands and code.
Variables and Data Structures
In other programming languages like C, C++ and Java, you will need to declare the type of variables but in Python you don’t need to do that. Just type in the variable and when values will be given to it, then it will automatically know whether the value given would be a int, float or char or even a String.
For more info refer to www. Geeksforgeeks
Answer:
11 Beginner Tips for Learning Python Programming
Make It Stick. Tip #1: Code Everyday. Tip #2: Write It Out. Tip #3: Go Interactive! Tip #4: Take Breaks. ...
Make It Collaborative. Tip #6: Surround Yourself With Others Who Are Learning. Tip #7: Teach. Tip #8: Pair Program. ...
Make Something. Tip #10: Build Something, Anything. Tip #11: Contribute to Open Source.
Go Forth and Learn!