我想知道如何打印目录中图像的链接。我试着搞砸了一下,到目前为止它还没有用。
#!/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
答案 0 :(得分:0)
你应该添加单引号。
- print (<img src="/~NAME/images/figure_1.png">)
+ print ('<img src="/~NAME/images/figure_1.png">')