get data from keyboard python code example
Example: get data from keyboard python
value = input("Please enter a string:\n")
print(f'You entered {value}')
value = input("Please enter a string:\n")
print(f'You entered {value}')