반응형
SyntaxError: '(' was never closed¶
In [1]:
def say_hello():
return "hello"
# 파이썬 코드에서 괄호를 제대로 매칭하지 않았을때 발생하는 에러이네요. 오타와의 전쟁 끝나지 않습니다 ㅠㅠ
print(say_hello()
Cell In[1], line 4 print(say_hello() ^ SyntaxError: '(' was never closed
In [2]:
def say_hello():
return "hello"
# 괄호를 제대로 매칭하면 에러가 발생하지 않습니다ㅏ.
print(say_hello())
hello
반응형
'python' 카테고리의 다른 글
ValueError: shapes (100,) and (1,100) not aligned: 100 (dim 0) != 1 (dim 0) (0) | 2024.03.23 |
---|---|
파이썬으로 점점 늘어났다 줄어드는 숫자 랜덤하게 만들기 (0) | 2024.03.19 |
파이썬 순서도 그리기 (0) | 2024.03.02 |
파이썬 기본 그래프 그리기(matplotlib, plotly) (0) | 2024.02.27 |
파이썬 자주쓰는 정규식 1 (0) | 2024.02.21 |
댓글