Skip to content

Tag: python

parsing a .srt file with regex

I am doing a small script in python, but since I am quite new I got stuck in one part: I need to get timing and text from a .srt file. For example, from I need to get: 00:00:01,000 –> 00:00:04,074 and Subtitles downloaded from www.OpenSubtitles.org. I have already managed to make the regex for timing…

Check if a value exists in pandas dataframe index

I am sure there is an obvious way to do this but cant think of anything slick right now. Basically instead of raising exception I would like to get True or False to see if a value exists in pandas df index. What I have working now is the following Answer This should do the trick

BFS algorithm in Python

Guys! Can someone help me with this bfs code? I can’t understand how to solve this queue line. Answer To extend your queue with all nodes not yet seen on the path, use set operations: or use a generator expression: Lists don’t support subtraction. You don’t really need to filter the nodes, h…

How to correctly parse a tiled map in a text file?

I’m making a RPG with Python and pygame for a school project. In order to create the few maps, I have chosen the Tile Mapping techniques I have seen in some tutorials, using a *.txt file. However, I have to cut some sprites (trees, houses, …) into several pieces. The problem is that I’m runn…