I need to know if i can take a user inputed string such as
name = raw_input("Enter Name:")
and take the word inputed and break the string apart by letters for example:
If the user enters "joe"
i will get "j", "o", "e"
is this possible?
also i need to know if i can take a line like this:
print (1+2+3+4+5+6)
and take the resulting number "21" and get two numbers "2" and "1" so i can add those to finally output "3". Thanks in advance