This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 == "-": |