我在Windows 10上使用XAMPP。我在下面创建此代码,然后在localhost上运行它:
#!C:/python/python.exe
print("Content-Type: text/html\n")
print("test")
from nltk.tokenize import sent_tokenize, word_tokenize
example_text = "Hello there, how are you doing today? I'm fine."
print(sent_tokenize(example_text))
来自本地主机的结果:
test
这不是结果。当我使用python shell运行代码时,它具有以下输出:
Content-Type: text/html
test
['Hello there, how are you doing today?', "I'm fine."] //this line should be shown in localhost
xampp似乎无法导入软件包,因此它无法将'sent_tokenize'函数用于'example_text'。该如何解决?
我只想在Web浏览器上运行python,任何解决方案都可以接受。