banana="BANANA"
list4=list(banana)
print("List by Constructor= ",list4)
Note: Need to be arranged in compiler after copied
OutPut:
List by Constructor= ['B', 'A', 'N', 'A', 'N', 'A']
banana="BANANA"
list4=list(banana)
print("List by Constructor= ",list4)