摘要:
(select case bq.registration_type when 1 then '国有' when 2 then '民营' when 3 then '外资' else '' end as '注册类型', bqr.revenue as '营收', '' as '总资产' from bigd 阅读全文
摘要:
from PIL import Image img = Image.open("logo.png") for i in range(2048): for j in range(2048): try: r,g,b,alpha = img.getpixel((i,j)) if r==255 and g= 阅读全文