Answer:
Here's a Python function that takes a string as input and prints the reversed version of the string:
def print_backwards(string):
reversed_string = string[::-1]
print(reversed_string)
The [::-1] syntax in string[::-1] returns the reversed version of the input string. The function then assigns the reversed string to a variable reversed_string and prints it using the built-in print() function.
Here's an example usage of the function:
>>> print_backwards("Hello, World!")
!dlroW ,olleH
>>> print_backwards("123456789")
987654321