1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # # µû¶óÇÏ¸ç ¹è¿ì´Â ÆÄÀ̽ã°ú µ¥ÀÌÅÍ°úÇÐ(»ý´ÉÃâÆÇ»ç 2020) # LAB 9-2 Æ®À§ÅÍ ¸Þ½ÃÁö ó¸®ÀÇ ´Ü¾î ÃßÃâ, 229ÂÊ # t = '[ARTICLE] 200820 BLACKPINK Jennie is regarded to have great effect on KT Mystic \ Red as it was chosen by 50% of those who prebooked for the Samsung Galaxy Note 20 ( LG \ U+ Mystic Pink 30%, SKT Mystic Blue not disclosed) ' low_t = t.lower() t = '' for word in low_t.split(' '): if word == 'kt' or word == 'samsung' or word == 'lg' or word == 'skt': t += '* ' else: t += word + ' ' print(t) | cs |