티스토리 뷰
문제: Python2.x: end= 가 syntax 에러가 남.
해결: 아래를 임포트해주면 해결.
from __future__ import print_function for i in range(2,10): for j in range(1, 10): print (i*j , end=" ") print(' ') |
문제: test.py 를 실행시킬때 아래의 메시지가 나온다면,
Error message:
-bash: ./test-py.py: python: bad interpreter: No such file or directory or ./test-py.py: line 2: from: command not found |
해결: test.py파일 최상단에 interpreter를 넣어준다.
#!/usr/bin/python #!python |
Q: Encoding issue
Error: Message
SyntaxError: Non-ASCII character '\xeb' in file /home/jooho/PycharmProjects/sample_project/sample.py on line 14, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details |
A: Add this declare at the first file.
#!/usr/bin/env python |
Q: Recursion depth 리미트에 걸려 에러가 날때
A: 리미트를 올려준다.
sys.setrecursionlimit(100000000) |
'IT > Python' 카테고리의 다른 글
[파이썬 기초] Variable의 값을 복사하기 (0) | 2018.02.12 |
---|
- Total
- Today
- Yesterday
- 밀튼
- 부동산분석
- 캐나다
- 토론토
- 온타리오
- RHCE
- git proGit
- TORONTO
- RHEL
- 캐나다부동산
- basement
- 토론토정착서비스
- BTBS
- 우드워킹
- Red Hat
- BC주
- 벌링턴
- cert
- 정착서비스
- ansible
- docker
- redhat
- 미시사가
- Jay
- certification
- Certificate
- 인터넷
- Canada
- 부모님초청이민
- 옥빌
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |