in this code, I want to check if the user typed the URL with "http" in it and after that, check if the SSL var is http or https, but I want it to ignore the caps (http or HTTP)
SSL = input(" Does your site have (http) or (https)? >> ")
URL = input(" Your URL >> ")
if "http" not in URL:
if SSL == "http": # I want SSL to be http or HTTP
print("I work!")