.I made a program in python that makes a Gmae and I want to share the code with you
لقد صنعت برنامج بالبايثون يعكس الكلام الذي أدخله له وأريد مشاركة الكود معكم.
def reverse_words(string):
reverse_string = string[::-1]
return reverse_string
word = input ("Please, Insert the word you want to revert.\n")
reversed_word = reverse_words(word)
print("Reversed word is: ", reversed_word)