Posts by iled • 188 points
4 posts
-
1
votes1
answer216
views -
3
votes1
answer3097
viewsA: How to create a Parser in Python?
Probably the ConfigParser can be adapted to read the type of CFG which you are using. However, writing a parser is a great way to learn and practice Python. In my case, that’s how I started learning…
-
1
votes1
answer1156
viewsA: Read txt with numbers and create a Python dictionary
Just convert the characters to whole numbers. u, v = map(int, line.split()) Changing this line results in {0: [1], 1: [2, 4, 5], 2: [3, 6], 3: [2, 7], 4: [5, 0], 5: [6], 6: [5, 7]}…
-
2
votes3
answers10640
viewsA: Python 3.5.0 ::: Install pygame
It is happening that python is unable to locate the installation of that library. This may happen because, for example,: the library was not installed in a directory where python is searching for…
python-3.xanswered iled 188