0
Bonjour quelle différence y a t'il entre "import math " et "from math import*"
import module
3 Antworten
0
bonjour
"import math" means that you import all the math to your app.
"from math import" + "something" means that you want only the "something" from the math to be imported.
0
thanks Elias
0
You are welcome!