10 lines
130 B
Python
10 lines
130 B
Python
from sugar.simulator import Bot
|
|
|
|
for i in range(0, 10):
|
|
bot = Bot()
|
|
|
|
bot.wait(5)
|
|
bot.change_activity('giraffes')
|
|
|
|
bot.start()
|