You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for x in res['dict_result']['simple_means']['symbols']:
for y in x['parts']:
if 'part' in y:
改为
for x in res['dict_result']['simple_means']['symbols']:
if 'ph_en' in x and x['ph_en'] != ‘’:
result.append('英:['+x['ph_en']+']')
if 'ph_am' in x and x['ph_am'] != '':
result.append('美:['+x['ph_am']+']')
for y in x['parts']:
if 'part_name' in y:
result.append(y['part_name']+':')
if 'part' in y:
增加了6行,显示英美音标及网络来源标记。
The text was updated successfully, but these errors were encountered:
改为
增加了6行,显示英美音标及网络来源标记。
The text was updated successfully, but these errors were encountered: