Python Forum
a better way to code this to fix a URL?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
a better way to code this to fix a URL?
#2
It seems that url will always contain // so why not just split and join and not bother whether is missing something or not:

>>> urls = ["//example.com", "://example.com", "s://example.com", "https://example.com"]
>>> for url in urls:
...     print("".join(["https://", url.split("//")[-1]]))
...
https://example.com
https://example.com
https://example.com
https://example.com
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
RE: a better way to code this to fix a URL? - by perfringo - Mar-19-2024, 06:43 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020