toc: true layout: post comments: true description: Homework for our student teachers categories: [markdown]

title: Homework Post

colorlist = "green", "red", "blue", "yellow" 

for i in colorlist: 
    print(i)
green
red
blue
yellow
pokepastalist=["Strangled Red", "Disabled", "Snow on Mount Silver", "Glitchy Red", "Lost Silver"]

desclist = "A Dissenion of 2 brothers after one lost their treasured pokemon", "The descension into madness when a musical pokemon suffers from Amusia", "What happens when the best of them all waits too long on a freezing cold mountain", "A sentient being feels the pain of glitches inside his own game", "A tortured soul only kept partially alive from the unown that possess him"

print(pokepastalist[0]),print(desclist[0]) 
print(pokepastalist[1]),print(desclist[1]) 
print(pokepastalist[2]),print(desclist[2])  
print(pokepastalist[3]),print(desclist[3]) 
print(pokepastalist[4]),print(desclist[4])
Strangled Red
A Dissenion of 2 brothers after one lost their treasured pokemon
Disabled
The descension into madness when a musical pokemon suffers from Amusia
Snow on Mount Silver
What happens when the best of them all waits too long on a freezing cold mountain
Glitchy Red
A sentient being feels the pain of glitches inside his own game
Lost Silver
A tortured soul only kept partially alive from the unown that possess him
(None, None)