print("Hello World!")
print('Hello World!')
print("""Hello World!""")
print('''Hello World!''')
Learn More
# This Python program adds two numbers
num1 = 14
num2 = 25
sum = num1 + num2
print('The sum of ', num1, ' and ', num2, ' is ', sum)
Learn More
num1 = input('Enter first number: ')
num2 = input('Enter second number: ')
# Add two numbers
sum = float(num1) + float(num2)
# Display the sum
print('The sum of ', num1, ' and ', num2, ' is ', sum)
Learn More
In order to access the Python library, you need to install it first : pip install pyautogui
'''
Automate any Chat-Messenger with Python
Author : DEEPAK RAJ
'''
# import the necessary module
import pyautogui
import time
time.sleep(5)
text = '☠ You Are Hack ☠'
while True:
pyautogui.typewrite(text)
pyautogui.press('enter')
time.sleep(1)
Learn More