我生成了一个2D列表。它在一个列中包含文件名,在第二个列中包含数字。我现在想获取一个新列表,如果第2列中的数字> 0,则仅包含文件名。
但是,我有一个混杂的清单,所以我很挣扎。字符串和整数。我想阅读第二个col,以决定是否要复制到第二个列表。我该怎么办?我需要搜索什么?
我尝试了slen len(List)->但由于包含字符串而无法正常工作
我当时正在考虑将其与数组进行比较-但是numpy不喜欢我的字符串,因此我不需要字符串。
我尝试了
if row[1]>0:
print (row)
但是没有用。
能否请任何人给我提示要寻找什么?
答案 0 :(得分:0)
您尝试过这种方法吗?
var iframe = document.createElement('iframe');
iframe.src = 'https://sample.com/widget.html
// insert iframe into parent node
// or set content into document
var doc = iframe.contentWindow.document;
doc.open();
doc.write('content');
doc.close();