Another way:
test_list = ['one', 'two', None] res = [i or 'None' for i in test_list]
Even better if you're working with numbers, since int(None) gives an error:
int(None)
test_list = [1, 2, None] res = [i or 0 for i in test_list]