Switching between recent tabs on chrome:
Use the following chrome extension and use the hotkey (Ctrl + Q) to switch between recent tabs.
https://chrome.google.com/webstore/detail/recent-tabs/ocllfmhjhfmogablefmibmjcodggknml/related
Get current path in python
os.getcwd()
https://data-flair.training/blogs/python-directory/#:~:text=To%20find%20out%20which%20directory,use%20the%20getcwd()%20method.&text=Cwd%20is%20for%20current%20working,as%20a%20string%20in%20Python.
Zoom an image in python Scipy library ndimage
new_imageĀ = scipy.ndimage.zoom(old_image , zoom = (2,2,2), order = 1)