Получите данные с клавиатуры Python

value = input("Please enter a string:\n")
 
print(f'You entered {value}')
Faithful Fish