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

 

list_withoutSevens


Given an list of integers, remove all values of 7.


list_withoutSevens([5, 6, 7, 8]) → [5, 6, 8]
list_withoutSevens([6, 7, 8]) → [6, 8]
list_withoutSevens([1, 7, 7, 2]) → [1, 2]

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

def list_withoutSevens(data):

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

Post-solution available

Copyright Nick Parlante 2017 - privacy