SI17: Difference between revisions
Line 22: | Line 22: | ||
#print ' ' | #print ' ' | ||
from random import choice | from random import choice | ||
characters = ['👓', '👠', '🧨', '📣', '⚽', '🦺', '🏳🌈', '💍','👑','💻','🚬','🍗','🧵'] | characters = ['👓', '👠', '🧨', '📣', '⚽', '🦺', '🏳🌈', '💍','👑','💻','🚬','🍗','🧵'] | ||
#numbers = [1,2,3,4,5,6,7,8,] | #numbers = [1,2,3,4,5,6,7,8,] | ||
#height = 1 | #height = 1 | ||
#for y in range(height): | #for y in range(height): | ||
#for x in range(choice(numbers)): | #for x in range(choice(numbers)): |
Revision as of 09:35, 23 March 2022
Approaching the Loot Box through Gamification
Special Issue #17
Collective reading of the texts .....
with alex, camo, chae and erica
Annotating the texts ....
Fanfiction Katamari
with camo and erica
link
Prototyping
trying to generate puzzles through emojis
#LOOT BOX # it works like this # call the random function # define the characters that are going to be picked randomly # define with and height # then write a code that for the range of (height,width) it prints the random characters #print ' ' from random import choice characters = ['👓', '👠', '🧨', '📣', '⚽', '🦺', '🏳🌈', '💍','👑','💻','🚬','🍗','🧵'] #numbers = [1,2,3,4,5,6,7,8,] #height = 1 #for y in range(height): #for x in range(choice(numbers)): for x in range(3): print(choice(characters), end=) print(' ')