320x100
SyntaxError: Missing parentheses in call to 'print'
python 구동을 했는데 위와 같이 에러가 발생이 된다.
이유는 간단하다 python2 와 python3 버전에 print 사용시 형식이 변경이 되어서 그렇다.
python2 버전에서는
print "Initialize arrays for %d million of elements" % FACTOR
위와 같이 표현을 했다면
python3 버전에서는
print ("Initialize arrays for %d million of elements") % FACTOR
적어주면 위 에러 없이 정상 작동이 된다.
320x100
'Linux' 카테고리의 다른 글
subversion(svn) log 설정하기 (0) | 2023.03.05 |
---|---|
centos7 install gcc 4.9.x (0) | 2023.02.26 |
does not support the http/dav protocol (0) | 2023.02.09 |
Commit failed (details follow): could not begin a transaction (0) | 2023.02.08 |
openmpi 설치 방법 (Open MPI:Open Source High Performance Computing) (0) | 2023.01.25 |