lst=["koala", "cat", "fox", "panda", "chipmunk", "sloth", "penguin", "dolphin"]
#Type your answer here.
for b in lst:
print(b)
koala cat fox panda chipmunk sloth penguin dolphin
lst=["Sam", "Lisa", "Micha", "Dave", "Wyatt", "Emma", "Sage"]
#Type your code here.
for i in lst:
print("Hello!, " + i)
Hello!, Sam Hello!, Lisa Hello!, Micha Hello!, Dave Hello!, Wyatt Hello!, Emma Hello!, Sage
str="Antarctica"
#Type your code here.
for i in str:
print(i)
A n t a r c t i c a
str="Civilization"
c=0
for i in str:
print(i)
#sourcecode will go below
#sourcecode will go above
C i v i l i z a t i o n
lst1=["Phil", "Oz", "Seuss", "Dre"]
lst2=[]
#Type your answer here.
lst2.append(lst1)
print(lst2)
[['Phil', 'Oz', 'Seuss', 'Dre']]
lst1=[3, 7, 6, 8, 9, 11, 15, 25]
lst2=[]
#Type your answer here.
lst2.append(lst1)
print(lst2)
[[3, 7, 6, 8, 9, 11, 15, 25]]
lst1=[111, 32, -9, -45, -17, 9, 85, -10]
lst2=[]
#Type your answer here.
lst2.append(lst1)
print(lst2)
[[111, 32, -9, -45, -17, 9, 85, -10]]
lst1=[3.14, 66, "Teddy Bear", True, [], {}]
lst2=[]
#Type your answer here.
lst2.append(lst1)
print(lst2)
[[3.14, 66, 'Teddy Bear', True, [], {}]]