我是Julia语言的新手,下面是我使用Jupyter Notebook编码的代码,但是没有输出但是当我使用REPL尝试相同的代码时,有一个输出。请帮帮我。
注意:变量的值设置为'S'或's',输入是我从IsmaelVenegasCastelló(Julia request user input from script)复制的函数。谢谢Castelló先生的方式。
if choose == 'S' || choose == 's'
str = input("Please input a String.");
che = input("please input a character to be search");
search(str, che);
end
答案 0 :(得分:1)
在JuliaPro(0.5.1.1)中以这种方式对我完全没用。
julia> choose='s'
's'
julia> function input(prompt::AbstractString="")
print(prompt)
return chomp(readline())
end
input (generic function with 2 methods)
julia> if choose == 'S' || choose == 's'
str = input("Please input a String.");
che = input("please input a character to be search");
search(str, che);
end
Please input a String.It is working.
please input a character to be searchk
10:10