24th March 2022
Computer Science⚑
Programming⚑
Python⚑
-
New: Adjust default plot size.
Try running
%matplotlib notebookafter the imports.
Other⚑
-
New: Array find method.
.find(): returns the first element in the provided array that satisfies the provided testing function. If no values satisfy the testing function,undefinedis returned. E.g.,array1.find(element => element > 10).