print('-----')
print('SITES')
print('-----')
print()
print()
print('Duolingo Brasileiro')
print('Duolingo Inglês')
print('Duolingo Alemão')
escolha_site = str(input('Escolha qual versão do site do duolingo deseja acessar: '))
if escolha_site == 'Duolingo Brasileiro':
print('https://pt.duolingo.com/')
elif escolha_site == 'Duolingo Inglês':
print('https://en.duolingo.com/')
elif escolha_site == 'Duolingo Alemão':
print('https://de.duolingo.com/')
What I want to do is that when the user wants to access such a site, after he chooses, he could click on the link, and would be redirected to the default PC browser, in my case it's Chrome. I'm not an advanced / intermediate user of python, but I already see the need to learn a little about how to tinker with python. Remembering that these "duolingos", are just for examples, I could have used other sites as an example. Sorry for any formatting error! I'm still new here and I have a lot of work to put the code, I have to be giving spaces ... anyway, I do not know how to play much here. I used "print" only to give a rendered same, because, I do not know what command or module I will need to use to make the link clickable.