假设我有一个名为Imp的文件夹,其中有一个网页文件夹和一个图像文件夹。我的网页在网页文件夹中,我的图像在图像文件夹中。那么,我如何从webpages文件夹中的网页给出图像文件夹中存在的图像s4.jpg的路径..我的意思是我应该在img标签的src属性中写什么?
答案 0 :(得分:0)
您有两种访问图像的路径:
src="../images/s4.jpg"
(直到父级是相对于您的页面显示的位置,此处页面是从直接子目录运行的。)src="/images/s4.jpg"
。答案 1 :(得分:0)
如果在c驱动器的documents文件夹中创建了一个文件夹imp,而在imp中,则创建了另一个文件夹-“ images”
然后您的代码应为-
uList = ['2 dogs play', '4 dogs play', '22 dogs play', '24 dogs play', '26 dogs play']
num = input("Enter a num: ") # no conversion to int here
for item in uList:
if num == item.split(' ')[0]: # split and get the digits before space
print(item)