Whenever I paste a URL into my Python output window in PyCharm it automatically realizes that the URL is a link and when running the program that asks for the user to enter the URL it will automatically take you to the website instead of storing the URL in the input variable I made for it, I fixed this problem by removing the https:// for the URL and concatenation http:// to the URL after it's entered.
But I want the user to be able to paste the URL straight in without having to remove https://, is it possible?