Python cgi脚本如何从目录打印图像链接

时间:2014-08-02 02:12:45

标签: python html image cgi

我想知道如何打印目录中图像的链接。我试着搞砸了一下,到目前为止它还没有用。

#!/usr/local/bin/python3

print('Content-type: text/html\n')

print ('<img src="/~NAME/images/figure_1.png">')

错误:

 CGIWrap encountered an error while attempting to execute this script:

Error Message: No such file or directory
Error Number: 2 

1 个答案:

答案 0 :(得分:0)

你应该添加单引号。

- print (<img src="/~NAME/images/figure_1.png">)
+ print ('<img src="/~NAME/images/figure_1.png">')