Posts

Showing posts with the label list

python average list

Image
#python average s = [102000,102000,102000,102000,102000] print('avg', sum(s,0.0)/len(s)) s.append(99500) s.append(99500) s.append(99500) s.append(99500) s.append(99500) print('avg', sum(s,0.0)/len(s))

전자정부 EgovMap list get

EgovMap List<?> list= SelfTestService.getResultList(searchVO);  log.warn("☆☆☆☆☆☆☆☆ list.size() : "+ list.size());  for(int i=0;i<list.size();i++){   EgovMap map1 = (EgovMap)list.get(i);   log.warn("☆☆☆☆☆☆☆☆  : map1.get(itemCd) : "+map1.get("itemCd"));  }