# Python Small Scripts
1 min read
Some examples of small python script for automate small task, than can save you some minutes:
python3 -vShow the version of Python.
Inside Python REPL, you can write:
x=4y=x*2print(f"Hello World: {y}") // Only for testingOnly for testing all is working well.