espanol

Run Settings
LanguagePython
Language Version
Run Command
import random word_dict = { 'levanten la mano' : 'raise your hand', 'esuchen' : 'listen', 'silencio' : 'quiet', 'por favor' : 'please', 'abran la computadora' : 'open your computer', 'cierren la computadora' : 'close your computer', 'miren la pizarra' : 'look at the board', 'miren la profesora' : 'look at the teacher', 'pasa a la pizarra' : 'go to the board', 'saquen una hoja da papel' : 'take a peice of paper', 'entreguen las hojas' : 'pass in', 'Pasen las hojas' : 'pass in', 'levántense' : 'stand up', 'siéntense' : 'sit down', 'repitan' : 'repeat' } def random_word(): r = random.randint(0, len(word_dict) - 1) it = 0 for w in word_dict: if it == r: return w else: it += 1 for monkey in range(6): print(random_word())
Editor Settings
Theme
Key bindings
Full width
Lines