What are Python libraries?

Asked by stem_mind · 3 months ago

1 Answer

35
amorebise · 3 months ago Top Answer

Think of a library like a toolbox. If you want to fix a pipe, you go to your toolbox and bring out a wrench. In Python, if you want to do math, you 'import' the Math library. If you want to do AI, you 'import' TensorFlow.

It saves you from reinventing the wheel.

Log in to add a comment.