python remove me
# TODO: Remove it
list exclude list
def set_approach(a,b):
return list(set(a)-set(b))
remove from list if not maches in list
>>sents = ['@$tthis sentences needs to be removed', 'this doesnt',
'@$tthis sentences also needs to be removed',
'@$tthis sentences must be removed', 'this shouldnt',
'# this needs to be removed', 'this isnt',
'# this must', 'this musnt']
>>>[x for x in sents if not x.startswith('@$t') and not x.startswith('#')]
['this doesnt', 'this shouldnt', 'this isnt', 'this musnt']
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us