id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

make_a_list


Here, write a program that forms a list that is separated by a character without using the list function.


make_a_list('A:B:C', ':') → ['A', 'B', 'C']
make_a_list('MMMMMM:EEEEE', ':') → ['MMMMMM', 'EEEEE']
make_a_list('TTTTT:RRR:AA:EEEEE', ':') → ['TTTTT', 'RRR', 'AA', 'EEEEE']

...Save, Compile, Run (ctrl-enter)

def make_a_list(s, sep):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 100

Copyright Nick Parlante 2017 - privacy