Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python では を使用できますraw_input()が、R では何を使用できますか?
raw_input()
>>> raw_input("let x=3 or 4?") let x=3 or 4?3 '3'
試してみてくださいreadline():
readline()
> input = readline('Enter anything: ') Enter anything: test > input [1] "test" >