How to win quiz with python and semantic wikipedia
Task: Give the names of all Polish kings that died in a battle.
Python:
for king in history.sets.PolishKings: if king.died_in_the_battle(): print king.name
Where one can find such set: history.sets.PolishKings?
0 comments
[ 2.5 ms ] story [ 11.6 ms ] threadNo comments yet.