In [9]:
def list_of_chars(list_chars):
      b = list(list_chars)
c = b.reverse()
print(c)
pass


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-9-b983120c7d3f> in <module>()
      1 def list_of_chars(list_chars):
      2       b = list(list_chars)
----> 3 c = b.reverse()
      4 print(c)
      5 pass

NameError: name 'b' is not defined

In [ ]:


In [ ]:


In [ ]: