Skip to main content

Posts

Python's decorators part 2 - Adding arguments

Let's see what are decorator and how to use in python allowing us to write more easily code to add features into different function without having to change them directly, but using... a decorator function.
Recent posts

FIRST PY-GAME with Python PART 6 - framerate speed up

Watch movie with Pygame and tkinter free App

Tkinter from skratch 1: make a window

To make a window in tkinter you must write the following code on notepad and save it as a file.py file, or with another name: # this is a comment, the interpreter does not matter about this # to write a comment, simply start with an hastag symbol, i.e. '#' # You need to import tkinter, a buil-in module, there's no # need to install anything # I imported tkinter as tk, so now I can load tkinter's variables, functions and classes # using tk followd by a dot and then the name of the variable, function etc. import tkinter as tk root = tk.Tk() root.mainloop() # that's all, the window is ready to show up This is the output

Tkinter tests App - Part III

From Google form to mail with Python (through excel)

In this video you will see how you can send a different email with data you want to show taken from the google form the users compiled. The original articole is here

Python and PIL to resize all images in a folder