basic concept to learn python code example
Example 1: how to learn python
"""
Great foundation for basics
https://www.w3schools.com/python/default.asp"
"""
Example 2: how to learn python
number_first = input("Please input fisrt number: ")
number_second = input("Please input second number: ")
print(sum((number_first, number_second)))
print(number_first + number_second)
=========================================================
Please input fisrt number: 1
Please input second number: 7
>>> 8
>>> 8
Example 3: how to learn python
Oh I see u wanna learn Python its preety easy :D