Défis Python
# A great site for python coding challenges is Edabit
link1 = "https://edabit.com/challenges/python3"
# For interactive challenges, try:
link2 = "https://pythonprinciples.com/challenges/"
import webbrowser
webbrowser.open(link1)
webbrowser.open(link2)
HelloWorld