Python Global Variable – How to reach them?

In python there is no scope for variables, however function definitions create their local versions as default and to edit global variable you need to declare it with a specific prefix. Here are some examples Non global variable case Global variable case Or with two different functions In the last example we can see that … Read more

Automate screenshots from WEB with Python

I was preparing to make a video about code blocks in motion canvas and I reached the stage where I make screenshots of slides from advanced slides plugin in Obsidian. To create a video I make a screenshot of each slide and then record voice and add clip on top of it. There were 35 … Read more