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.

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

Pygame: make animation Slower than Frame Rate

Pygame Platform game, coming soon update (5.2)

Make a Presentation with Pure Python (not forgetting tkinter)

Tkinter: how to hide and show Frame

one more window only

Speed Coding from string to Html Table

Pygame 3: move a sprite!

Python: how to get a list of file in a directory

Create multiple windows with Tkinter in Python

Python, SqLite and Tkinter [part 1]

How to resize an image with PIL and Python

US Capitals game with Pyhton

Pythonista Game on Ipad - part. 4: player moves

One of the video of the playlist about the video game you can find on Pythonista on the ipad. I'm exlaining the code.