강의

멘토링

커뮤니티

Inflearn Community Q&A

doduskim7126's profile image
doduskim7126

asked

Free Python Tutorial (Basic) - Become a Developer in 6 Hours

맥북 터미널 + 신탁스에러 봐주세요 ㅠ.,ㅜ

Written on

·

338

0

from math import *
print(floor(4.99)) #소수점을 내림, 4
print(ceil(3.14) #소수점을 올림, 4
print(sqrt(16)) #제곱근, 4

터미널 내용

/Users/-----/Desktop/pythonworkspace/practice.py The default interactive shell is now zsh. To update your account to use zsh, please run `chsh -s /bin/zsh`. For more details, please visit https://support.apple.com/kb/HT208050. -----ui-MacBook-Pro:~ -----$ python /Users/-----/Desktop/pythonworkspace/practice.py File "/Users/-----/Desktop/pythonworkspace/practice.py", line 79 print(sqrt(16)) #제곱근, 4 ^ SyntaxError: invalid syntax -----ui-MacBook-Pro:~ -----$

맥북 프로 사용중입니다 파이썬은 처음 배워보는데 이런 경우는 무엇이 문제고 어떻게 해결할 수 있을까요? ㅠㅠ

맥북터미널pythonzhssyntaxerror

Answer 1

0

print(ceil(3.14))

 

끝에 괄호 하나 빠뜨리셧네요^.^

doduskim7126's profile image
doduskim7126

asked

Ask a question