1 2 3 4 5 6 7 8 9 10 11 | # # µû¶óÇÏ¸ç ¹è¿ì´Â ÆÄÀ̽ã°ú µ¥ÀÌÅÍ°úÇÐ(»ý´ÉÃâÆÇ»ç 2020) # 6.8 º¯¼öÀÇ ¹üÀ§´Â ¾îµð±îÁöÀΰ¡, 155ÂÊ # def print_counter(): counter = 200 print('counter =', counter) # ÇÔ¼ö ³»ºÎÀÇ counter °ª counter = 100 print_counter() print('counter =', counter) # ÇÔ¼ö ¿ÜºÎÀÇ counter °ª | cs |