Clean URL

In URLs, the part after # usually points to a specific place on a page, but sometimes you only need the main address for saving or comparison. Write a function remove_url_anchor that takes a string url and removes the anchor from it. Remove the # character itself and everything after it.

Примеры

Ввод
"www.codewars.com#about"
Вывод
"www.codewars.com"
Ввод
"www.codewars.com?page=1"
Вывод
"www.codewars.com?page=1"
Ввод
"www.example.com#"
Вывод
"www.example.com"

Нужно реализовать

def remove_url_anchor(url: str) -> str:

Теги

strings
PostgreSQLv16

Tu sa zobrazí výsledok spustenia kódu

Tests12
Visible tests
Skrytý test 7
Skrytý test 8
Skrytý test 9
Skrytý test 10
Skrytý test 11
Skrytý test 12

They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.

Focus radio
Paused · SomaFM · Fluid