Python script run through IDLE has no output

无人久伴 提交于 2019-11-28 14:33:57

When you call a function, that function may return a value, and in this case os.getcwd() returns a string. Here, you never do anything to that string, so nothing happens - there's no output because you never print the string.

For example,

print os.getcwd()

would output what you would expect.

Reading your comment above, most Python interpreters will print out a representation of the return value of your code after it has been interpreted. This is why you see the string "printed" in the Python shell. However, when actually running the code, return values do not output.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!