python tutorial code code example
Example 1: python tutorial
print ("Hello, Python!");
Example 2: python tutorial
# printing hello world in python
print("Hello World")
# adding 2 numbers
num1 = 10
num2 = 20
print(num1 + num2)
print ("Hello, Python!");
# printing hello world in python
print("Hello World")
# adding 2 numbers
num1 = 10
num2 = 20
print(num1 + num2)