파이션 240210
Python 3.12.2 (tags/v3.12.2:6abddd9, Feb 6 2024, 21:26:36) [MSC v.1937 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license()" for more information. print("그냥 따라하기") 그냥 따라하기 print(10) 10 print(10, 20, 30) 10 20 30 print(10 20 30) SyntaxError: invalid syntax. Perhaps you forgot a comma? print(2.7) 2.7 print(2.5, 7.4, 90.56) 2.5 7.4 90.56 print(9, 5, 0.3) 9 5 0.3 pritn(" 정수를 출력..