Source Code
Python 19 Apr 2023

Python Program to print Hello World!

                    
  print("Hello World!")
  print('Hello World!')
  print("""Hello World!""")
  print('''Hello World!''')
                    
                    

Learn More
Python 19 Apr 2023

Python Program to Add Two Numbers

  
  # This Python  program adds two numbers
  
  num1 = 14
  num2 = 25
  
  sum = num1 + num2
  
  print('The sum of ', num1, ' and ', num2, ' is ', sum)

  

Learn More
Python 19 Apr 2023

Python Program to Add Two Numbers From the User

    
  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
Python 19 May 2023

Automate any Chat-Messenger with Python

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