Skip to content

Instantly share code, notes, and snippets.

View inavadeep1205's full-sized avatar

Navadeep Bitra inavadeep1205

View GitHub Profile
@inavadeep1205
inavadeep1205 / gist:cba483261e502e5af0c734ea262d1c71
Created August 21, 2023 16:57
Twitter Automation using Python SELENIUM
```python
from selenium import webdriver
from selenium.webdriver.common.by import By
import time
promised_down = 50
promised_up = 25
twitter_email = "YOUR EMIAL"
twitter_password = "YOUR PASSWORD"
#Basic Calculator
number1 = int(input("Enter your first number = "))
operator = input("Enter your operator = ")
number2 = int(input("Enter your second number = "))
if operator == "+":
print("Answer = ", number1+number2)
elif operator == "-":