This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
#exercise from "Learn Python Through Public Data Hacking" see youtube here : http://youtu.be/RrPZza_vZ3w | |
#Travis traveled to Chicago and took the Clark Street #22 bus up to Dave's office. | |
#Problem: He just left his suitcase on the bus! | |
#Your task: Get it back! | |
#Dave's office is located at: | |
# latitude =41.980262 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# my first dev with pythonista. A short game for my children | |
from scene import * | |
import time | |
import random | |
import sound | |
# force cpu to play the right move whith 12 pawn left |
NewerOlder