Answers for "learn python"

25

learn python

===== Links for reading ====

#Tutorial
https://docs.python.org/3/tutorial/
https://www.w3schools.com/python/
https://realpython.com/
https://www.tutorialspoint.com/python/
https://www.programiz.com/
https://github.com/TheAlgorithms/Python

#Interactive tutorial
https://www.codecademy.com/catalog
https://www.learnpython.org/
https://exercism.org/
https://www.sololearn.com/learning/1073
https://www.datacamp.com/learn/python

#Course
https://www.coursera.org/
https://www.udemy.com/topic/python/
https://www.udacity.com/
Youtube

#Practice
https://www.hackerrank.com/
https://leetcode.com/
https://codeforces.com/
https://www.topcoder.com/
https://www.codingame.com/
https://www.coderbyte.com/

#Book 
Python Crash Course
Head-First Python
Automate the Boring Stuff with Python
Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow
Programming Python: Powerful Object-Oriented Programming

#Forums, Discussion
https://stackoverflow.com/questions/tagged/python
https://www.reddit.com/r/Python/
https://python-forum.io/

#IDE
https://www.onlinegdb.com/
https://www.programiz.com/python-programming/online-compiler/
https://www.codechef.com/ide
https://www.jetbrains.com/pycharm/
https://code.visualstudio.com/
https://www.sublimetext.com/

 If it helpful, upvote me! Thanks ~
Posted by: Guest on April-10-2021
2

python tutorial youtube

'''
Do what you want, Google if you don't know how to.

But if you really want a tutorial; https://www.youtube.com/watch?v=rfscVS0vtbw
'''
Posted by: Guest on September-04-2020
16

how to learn python

"""
Great foundation for basics 
https://www.w3schools.com/python/default.asp"
"""
Posted by: Guest on February-29-2020
2

learn python 3

// i used w3schools.com to learn python
Posted by: Guest on March-13-2020
3

Python

Python is an interpreted, high-level, general-purpose programming language.

Created by Guido van Rossum and first released in 1991, Python's design
philosophy emphasizes code readability with its notable use of significant
whitespace.
Posted by: Guest on June-19-2020
3

how to learn python

# Basic python sum calculator

# If you know how to use function, you can use it, but for starters I will not use it

number_first = input("Please input fisrt number: ") # input() is used to take user input
number_second = input("Please input second number: ") # input() is used to take user input

# There is two way to add two numbers

print(sum((number_first, number_second))) # print() used to print stuff. # sum() takes tuple and sum the two or more numbers in it.
print(number_first + number_second) # print() used to print stuff. This method is easier and just make you do simple math.

=========================================================
# Output:
Please input fisrt number: 1
Please input second number: 7

>>> 8 # sum() printed
>>> 8 # second method printed
Posted by: Guest on January-09-2021

Browse Popular Code Answers by Language