[Solved] How can I get the “keyboard input” in IBM Watson studio?


This should work fine, but you may have re-defined input somewhere in your code, or your notebook is bugged. Try the following:

x = input("Enter text: ")
a = list(x)

1

solved How can I get the “keyboard input” in IBM Watson studio?