recup code pour mu editor

This commit is contained in:
2025-07-05 16:11:20 +02:00
parent 12b8efafbf
commit 5e9ac09dcf
25 changed files with 1006 additions and 0 deletions

5
mu_code/test_args.py Normal file
View File

@ -0,0 +1,5 @@
# Ecrit ton programme ici ;-)
def test_args(un, deux, *args, a="a", b="b", **kwargs):
print(f"un={un}, deux={deux}, args={args}")
print(f"a={a}, b={b}, kwargs={kwargs}")