C [Heroku - Django] heroku[router]: at=error code=H10 desc="App crashed" heroku[router]: at=error code=H10 desc="App crashed” 1. Procfile 올바르게 작성되었나 확인하기! 2. runtime.txt 형식 확인! 3. requirements.txt 에 빠진 패키지 없나 확인! 파이썬 패키지 목록에 있는 패키지들이 requirements.txt에 모두 들어가있나 꼭 확인해야한다!!!! 메모/에러 메모 2022.08.15
C [ BaekJoon - Python ] 단계별로 풀기 2. IF 단계별로 풀기 - 2. if문 1330 두 수 비교하기 a, b = map(int, input().split()) if a > b: print(">") elif b > a: print(" Algorithm/BOJ 2021.12.09
C [ BaekJoon - Python ] 1213. 팰린드롬 만들기(Silver 4) n = sorted(list(input().rstrip())) c = 0 x = "" if len(n) == 2: if n[0] != n[1]: print("I'm Sorry Hansoo") quit() i = 0 l = len(n) while i 1: print("I'm Sorry Hansoo") quit() i += 1 for _ in n[::2] + [x] + n[::-2]: print(_, end="") 카테고리 없음 2021.12.09
C [ BaekJoon - Python ] 23738. Ресторан (Bronze 2) n = input() l = [['B', 'v'], ['E', 'ye'], ['H', 'n'], [ 'P', 'r'], ['C', 's'], ['Y', 'u'], ['X', 'h']] for v in l: n = n.replace(v[0], v[1]) print(n.lower()) Algorithm/BOJ 2021.12.09
C [ BaekJoon - Python ] 23305. 수강변경 (Silver 5) 23305. 수강변경 (Silver 5) 👉 문제 👉 풀이 n = int(input()) l = [0] * 1000001 for i in list(map(int, input().split())): l[i] += 1 c = 0 for i in list(map(int, input().split())): if l[i] >= 1: l[i] -= 1 else: c += 1 print(c) Algorithm/BOJ 2021.11.30
C [ Python ] 3항 연산자 (Ternary Operator) 에서 break, return을 사용 할 수 없는 이유 while True: a, b = map(int, input().split()) print(a + b) if (a + b) else break 줄 수를 줄이기 위해 위와 같이 코드를 작성하자, break에 빨간 줄이 그어지며 SyntaxError: invalid syntax가 발생했다. Python에서 3항 연산자의 사용 방식은 다음과 같은데, if else 여기서 는 expression이며, break, return과 같은 명령어는 statement라고 한다. expression와 statement을 구분하는 방법은 출력할 수 있거나, 변수에 값을 삽입할 수 있으면 expression, 할 수 없으면 statement 이다. expression의 예 2 + 2 3 * 7 1 + 2 + 3 * (8 **.. Dev/Python 2021.10.23
C [ Python ] File "<stdin>", line 1 SyntaxError: invalid syntax #에러 전문 >>> set PYTHONIOENCODING=utf8 ; if ($?) { py } "d:\dev\Repositiory\Python-prac\py_basic\prac3.py" File "", line 1 set PYTHONIOENCODING=utf8 ; if ($?) { py } "d:\dev\Repositiory\Python-prac\py_basic\prac3.py" ^ SyntaxError: invalid syntax # 해결법 code-runner 실행 설정에서 "code-runner.executorMap": { "python": "set PYTHONIOENCODING=utf8 | py" } 파이썬 항목을 이렇게 바꿔주면 된다. # 에러 발생이유 이미 실행되어있는 파이썬 인터프리터 내부.. 메모/에러 메모 2021.04.05
C [ vscode ] extension "Code Runner" 한글 깨짐 (python, c, cpp) 1. Code Runner 설정으로 들어간다. 2. setting.json 열기 # python 항목 수정 "python": "python -u", 를 아래와 같이 수정 "python": "set PYTHONIOENCODING=utf8 && python -u", # C, Cpp 항목 수정 "c": "chcp 65001 && cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", "cpp": "chcp 65001 && cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", Dev/Python 2021.03.17