Category: technical
I guess, quite often, you see the usage of __name__ in Python. Yes, it is a keyword (attribute) associate to a module. It can be used to tell if …
There are many available packages that you can use in creating of windows/dialogs in Python script. For example, The most important can be found below: Tkinter: Tkinter is the …
I’ve been learning python for some time and would like note the nice language aspects of Python programming syntax. 1. Multiple statements on a single line. In python, normally, …
The problem is from codeforces: http://www.codeforces.com/problemset/problem/173/A This is the first problem that I submited in codeforces. It is a math problem that computes how many games for two players …
In linux, the which command is to search for executables in the given $PATH variables. In windows, the which command can be easily created simply a few lines of …