python learning code example

Example 1: learn python

A guide for beginners to learn.
If it helpful, upvote me! Thanks ~~
#Tutorial
https://www.w3schools.com/python/
https://www.codeavengers.com/
https://www.learnpython.org/
https://www.python.org/
https://www.programiz.com/
https://docs.python.org/3/tutorial/
https://codescracker.com/python/index.htm
https://github.com/TheAlgorithms/Python

#Course
https://www.tutorialspoint.com/
https://www.coursera.org/
https://www.udemy.com/
https://www.codecademy.com/
Youtube

#Practice
https://www.hackerrank.com/
https://leetcode.com/
https://www.codewars.com/
https://codeforces.com/
https://www.topcoder.com/
https://www.codingame.com/
https://www.coderbyte.com/
https://exercism.io/
  
#IDE
https://www.onlinegdb.com/
https://www.programiz.com/python-programming/online-compiler/
https://www.codechef.com/ide

Example 2: how to get started with python

#the best way to start with anything is not to rush and start with the basics
#python however is really good for begginers as it is easy to read and understaned
#and has relatively easy syntax so dont spend a lot of time on the basics like
#print() and if  rather learn the basics and learn about the libraries 
#and a good way to learn about the libraries is https://pypi.org/ if you are also
#struggling to find motivation for programming the best way to work around it is
#to learn how dopamine works in your brain and how to use it in progoramming
#for that use the video https://www.youtube.com/watch?v=9QiE-M1LrZk
#for a good IDE i reccomend pycharm
#and remember programming is not something you should remember to be good 
#programming is something you need to understand and to be a good programmer you 
# need to know how to put the internet to a good use and to know where to search

#if this helped leave it an upvote 
#rubel1130 :)

Example 3: 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
'''

Example 4: how to learn python

"""
Great foundation for basics 
https://www.w3schools.com/python/default.asp"
"""

Example 5: python tutororila

print ("Welcome to Python")

Example 6: 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