Posts

Showing posts with the label permutation

Generate permutations of string-code error

Generate permutations of string-code error def permute(word): letters = list(word) print(type(letters)) for letter in letters: letter_copy = letters.remove(letter) rtrn_list = letter + permute(letter_copy) return rtrn_list w = 'ABC' print(permute(w)) i am new to programming. someone please say where the problem is. Thanks in advance By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.