scrimba
Learn Python
Split and Join - Exercise
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Split and Join - Exercise
AboutCommentsNotes
Split and Join - Exercise
Expand for more info
index.py
run
preview
console

csv = 'Eric,John,Michael,Terry,Graham:TerryG;Brian'
friends_list = ['Exercise: fill me with names']
print(friends_list)
# From the list above fill a list(friends_list) properly
# with the names of all the friends. One per "slot"
# you may need to run same command several times
# use print() statements to work your way through the exercise

Console
"['Exercise: fill me with names'] "
,
/index.html
-4:03