Updates
Jun 15, 2019
Content description: Five new hero episodes featuring the wizard Chameleon and stealthy spider-monkey Max
Download Requirements: Internet connection and Steam client required
May 18, 2019
Content description: Added a new episode
Download Requirements: Internet connection and Steam client required
Development
There have been various Lego Island 2 updates and changes to the game. The latest version is available on Rockstar Warehouse.
The game was developed in a simple platformer-style game using the "Lego Island Engine" by Rockstar Vancouver, for the PC and Game Boy Advance. The Lego Island Engine was first released on October 14, 2005.
Reception
Lego Island 2: The Great Brick Race received "generally favorable" reviews, according to review aggregator Metacritic.
References
External links
Category:2006 video games
Category:Game Boy Advance games
Category:PlayStation 2 games
Category:PlayStation Network games
Category:Rockstar Games
Category:Video games developed in Canada
Category:Video games with 2.5D graphics
Category:Windows games
Category:Multiplayer and single-player video games
Category:Video games set in New York City
Category:Cultural depictions of the Donald Trump
Category:Cultural depictions of Hillary Clinton
Category:Cultural depictions of Donald Rumsfeld
Category:Cultural depictions of Vladimir PutinQ:
How to convert a string (numbers separated by colon) to a list of strings?
I have a string '3:16:0:20'
I'd like to convert it to a list like this:
['3', '16', '0', '20']
I've tried the below:
In [11]: import re
In [12]: re.split(":", "3:16:0:20")
Out[12]: ['3', '16', '0', '20']
However, I'd like to do it only in a single line of code.
A:
Split on : and then use list comprehension:
In [78]: s = '3:16:0:20'
In [79]: [x for x in re.split(':', s) if x.isdigit()]
Out[79]: ['3', '16', '0', '20']
Re be359ba680
Related links:
コメント