1 ===== Links for reading ====
2
3#Tutorial
4https://docs.python.org/3/tutorial/
5https://www.w3schools.com/python/
6https://realpython.com/
7https://www.tutorialspoint.com/python/
8https://www.programiz.com/
9https://github.com/TheAlgorithms/Python
10
11#Interactive tutorial
12https://www.codecademy.com/catalog
13https://www.learnpython.org/
14https://exercism.org/
15https://www.sololearn.com/learning/1073
16https://www.datacamp.com/learn/python
17
18#Course
19https://www.coursera.org/
20https://www.udemy.com/topic/python/
21https://www.udacity.com/
22Youtube
23
24#Practice
25https://www.hackerrank.com/
26https://leetcode.com/
27https://codeforces.com/
28https://www.topcoder.com/
29https://www.codingame.com/
30https://www.coderbyte.com/
31
32#Book
33Python Crash Course
34Head-First Python
35Automate the Boring Stuff with Python
36Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow
37Programming Python: Powerful Object-Oriented Programming
38
39#Forums, Discussion
40https://stackoverflow.com/questions/tagged/python
41https://www.reddit.com/r/Python/
42https://python-forum.io/
43
44#IDE
45https://www.onlinegdb.com/
46https://www.programiz.com/python-programming/online-compiler/
47https://www.codechef.com/ide
48https://www.jetbrains.com/pycharm/
49https://code.visualstudio.com/
50https://www.sublimetext.com/
51
52 If it helpful, upvote me! Thanks ~
1"""
2Great foundation for basics
3https://www.w3schools.com/python/default.asp"
4"""
1# Heya! Let me teach you the basics.
2print("Hello, World!") # Look, your Python hello world program!
3x = "y" # Set global variable x to a string, "y"
4#-IMPORTS--
5import MyModule # Imports a module called MyModule.
6#--PIP--
7#Use powershell, cmd, bash, etc and run:
8pip install MyModule # Installs MyModule!
9#--Functions--
10def MyFunc():
11 # My Code!
12#--COMMENTS--
13# Comments start with a hashtag and work for 1 line. multiple lines can use """ at the beginning and """ at the end.
14
15# Thank you!
16
1Watch Programming with mosh on youtube
2Or if you just need help go to stack overflow or w4schools