Misschien handig om bij het begin te beginnen: https://www.packtpub.com/application-development/learn-python-programming-second-edition
w: www.karibu-online.nl m: 06 5060 4033 Op 3 juli 2018 om 19:56 schreef Marc Stevens <[email protected]>: > Hoi allemaal, > > Misschien is het onzinnig en simplistisch, maar ik vroeg me af of > variabelen binnen een functie kunnen worden overgeheveld naar een tweede > of volgende functie? > Ik heb dit simpel programmaatje geschreven, waarvan ik denk dat ik dat > probleem ooit een tegen zal komen in een groter programma. > > def functie_een(x): > print(x) > def functie_twee(x): > y=x+3 > print y > > functie_een(10) > functie_twee(x) > > > _______________________________________________ > Python-nl mailing list > [email protected] > https://mail.python.org/mailman/listinfo/python-nl > >
_______________________________________________ Python-nl mailing list [email protected] https://mail.python.org/mailman/listinfo/python-nl
