converted_tables = ['TAC_03C','TAC_05C','TAC_06C','TSI_99C']
convert_tables = ['TAC_15M','TAC_18C','TAC_19M','TEA_01M','TEA_02C','TFP_26C','TFP_27M','TSI_27M']
result_table = list(set(convert_tables) - set(converted_tables))
# print(sorted(result_table))
for item in sorted(result_table):
print(item)
python 3.6 기준입니다.
example : https://pyfiddle.io/fiddle/183a642f-f82f-4620-a52a-83ecbeee5113/?i=true
'Web_Application > python' 카테고리의 다른 글
[python] sp 명으로 sp create 구문 가져오기 (0) | 2019.04.08 |
---|---|
[python][jellyfish] 문자열 유사도 (jaro distance) (0) | 2019.03.26 |
[python] excel to json (0) | 2019.02.08 |
[python] object 간 문자열 유사도 체크 (0) | 2019.01.22 |
[python][pyinstaller] lib not found api-ms-crt-* (0) | 2019.01.02 |