lst=["koala", "cat", "fox", "panda", "chipmunk", "sloth", "penguin", "dolphin"]
#Type your answer here.
for i in lst:
print(i)
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:
#sourcecode will go below
print(lst)
c += 1
print(c)
#sourcecode will go above
['Civilization'] 1 ['Civilization'] 2 ['Civilization'] 3 ['Civilization'] 4 ['Civilization'] 5 ['Civilization'] 6 ['Civilization'] 7 ['Civilization'] 8 ['Civilization'] 9 ['Civilization'] 10 ['Civilization'] 11 ['Civilization'] 12
lst1=["Phil", "Oz", "Seuss", "Dre"]
lst2=["Dr."]
#Type your answer here.
lst2.append(lst1)
for i in lst2:
print(i)
Dr. ['Phil', 'Oz', 'Seuss', 'Dre']
lst1=[3, 7, 6, 8, 9, 11, 15, 25]
lst2=[]
#Type your answer here.
lst1=[111, 32, -9, -45, -17, 9, 85, -10]
lst2=[]
#Type your answer here.
print(lst2)
[]
lst1=[3.14, 66, "Teddy Bear", True, [], {}]
lst2=[]
#Type your answer here.
print(lst2)
[]