
(Windows 기준) 1. 아래 링크로 들어가서 다운로드 한다.https://www.postman.com/downloads/ Download Postman | Get Started for FreeTry Postman for free! Join 35 million developers who rely on Postman, the collaboration platform for API development. Create better APIs—faster.www.postman.com 2. 다운로드가 다 되면 .exe 파일을 열어 Postman을 설치한다.(여기서 로그인을 해야함) 3. 딱히 복잡하게 설치하는 건 없고 그냥 로그인만 하면 끝나는 듯..?잘... 설치된ㄱㅔ 맞겠지..?
1330 : 두 수 비교하기 a, b = map(int, input().split()) 와 a, b = map(int, input()) 의 차이점 a, b = map(int, input().split()) : 공백으로 구분된 여러 숫자를 입력 받을 때 사용 1 2 → a = 1, b = 2 a, b = map(int, input()) : 한 자릿수 숫자를 여러 개 붙여서 입력 받을 때 사용 12 → a = 1, b = 2 a, b = map(int, input().split())if (a > b): print(">")elif (a 9498 : 시험 성적score = int(input())if (score >= 90..
2557print("Hello World!") 1000map() : 반복 가능한 자료형의 각 요소에 함수를 적용하여 새로운 map 객체를 만드는 함수map(함수, iterable) : 각 요소에 함수 적용list(map(int, ...)) : 문자열 리스트 → 숫자 리스트a, b = map(int, ...) : 여러 숫자를 한 줄에서 각각 분리 후 정수 변환a, b = map(int, input().split())print(a+b) 2588a = int(input())b, c, d = map(int, input())print(a * d)print(a * c)print(a * b)print(a * (b*100 + c*10 + d))와... 파이썬 진짜 오랜만에 만져서 그런지input 함수 어케 쓰는지도 헷..

"The debugger in the Python extension no longer supports Python versions minor than 3.9." VS Code의 Python 확장 기능에서 3.9 미만 버전은 더 이상 디버깅을 지원하지 않는다고,,, 해결방법1. 파이썬 3.9 이상 버전 다운받기https://www.python.org/downloads/ Download PythonThe official home of the Python Programming Languagewww.python.org 2. 설치 후 VS Code에서 파이썬 인터프리터 변경하기- Ctril + Shift + P- Python : Select Interpreter- 목록에서 다운로드한 최신 버전을 선택 하면 잘..