Profile

머리정리하는곳

c2w2m2

Python append

지금 marumaru 알림이 만드는데


b = list()

tmp_res = dict()

for i in td_data:

i = str(i)

tmp_res['link'] = "http://www.marumaru.in" + i[ i.find("href=\"") + 6 : i.find("href=\"") + 23 ]

tmp_res['image'] = "http://www.marumaru.in" + i[ i.find("image:url(") + 10 : i.find(")\"></div>") ]

tmp = i[ i.find("<div cid=") : i.find("<span class=\"comment\">") ]

tmp_res['title'] = tmp[  tmp.find("\n")+1 : ]

print tmp_res['title']

b.append(tmp_res)


이렇게 짜면 자료가 제대로 들어가지 않는다...



b = list()

for i in td_data:

tmp_res = dict()

i = str(i)

tmp_res['link'] = "http://www.marumaru.in" + i[ i.find("href=\"") + 6 : i.find("href=\"") + 23 ]

tmp_res['image'] = "http://www.marumaru.in" + i[ i.find("image:url(") + 10 : i.find(")\"></div>") ]

tmp = i[ i.find("<div cid=") : i.find("<span class=\"comment\">") ]

tmp_res['title'] = tmp[  tmp.find("\n")+1 : ]

print tmp_res['title']

b.append(tmp_res)


이런식으로 매 반복마다 초기화 해줘야 한다리,,,

' Daily life' 카테고리의 다른 글

후,,  (0) 2018.03.21
신입생 풀이 세미나 ppt  (1) 2018.03.09
목표  (0) 2018.02.19
일본갔다왔다  (0) 2018.02.18
pwntw 97위  (0) 2018.02.13