为什么会失败?
#df[df['genre'].str.contains('|IC|')] #### row 6
# This also not satisfying my need as i am missing rows 1 and 5
但这有效:
set fldr = CreateObject("shell.application").BrowseForFolder(0, "Example", 0, 0).Self.Path
答案 0 :(得分:3)
因为Set Statement不是用于分配字符串变量:
要生效,objectvar必须是与分配给它的对象一致的对象类型。
例如,这可以起作用:
Set objFldr = CreateObject("shell.application").BrowseForFolder(0, "Example", 0, 0)
strFldrPath = objFldr.Self.Path