Frage im Vorstellungsgespräch bei Amazon

Reverse words without using inbuilt modules.

Antworten zu Vorstellungsgespräch

Anonym

11. Dez. 2021

words = ["Hello", "the"] word = [] for w in words: word.append(w[::-1])

1

Anonym

25. Juni 2022

SyntaxError: invalid syntax >>> result1 = words[0] >>> result2 = words[1] >>> print("{} {}".format (result2 ,result1)) B a

1