Why Does PyCharm Automatically Hyperlink My URL
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
Solution 1:
It is really functionality of pycharm , which we are referring as bug.
print("enter url with one space at last.")
url=input()[:-1:]
print(url)
we can't fix the bug, but can make ways to tackle it ....
but worst case is when we write
url=input("enter a url")
print(url)
In worst case we can't press enter even , no browser is opening, just program stucks..
Post a Comment for "Why Does PyCharm Automatically Hyperlink My URL"