import requests
URL = "https://en.wikipedia.org"
START = "/wiki/Special:Random"
def stahuj(stranka):
while True:
odpoved = requests.get(URL + stranka)
odpoved.raise_for_status()
print(odpoved.text)
# 2. Napiš titulek
# 3. Vytáhni další odkaz
break
if __name__ == "__main__":
stahuj(START)