일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 네트워크보안
- 인공지능
- 자료구조
- 파이썬
- 코딩
- 컴퓨터과학
- 프로그래밍
- 데이터분석
- 컴퓨터비전
- 데이터베이스
- 알고리즘
- 네트워크
- 2
- 프로그래밍언어
- 소프트웨어
- 웹개발
- 데이터구조
- 컴퓨터공학
- I'm Sorry
- 소프트웨어공학
- 사이버보안
- 딥러닝
- 클라우드컴퓨팅
- 보안
- 데이터과학
- 머신러닝
- 자바스크립트
- 빅데이터
- 버전관리
- Yes
- Today
- Total
목록Coding (5)
스택큐힙리스트
전역 변수를 만드는 두 가지 방법을 보았는데, 차이는 무엇이며 언제 각각을 사용해야 할까요? //.h extern NSString * const MyConstant; //.m NSString * const MyConstant = @MyConstant; 와 //.h extern NSString *MyConstant; //.m NSString *MyConstant = @MyConstant; 답변 1전자는 상수에 이상적인데, 가리키는 문자열을 변경할 수 없기 때문입니다: //.h extern NSString * const MyConstant; //.m NSString * const MyConstant = @MyConstant; ... MyConstant = @Bad Stuff; //
Python 3.5를 설치했고 실행 중인 동안 pip install mysql-python다음과 같은 오류가 발생합니다.오류: Microsoft Visual C++ 14.0이 필요합니다 (vcvarsall.bat을 찾을 수 없음)나는 다음의 라인들을 내 Path에 추가했다. C:\Program Files\Python 3.5\Scripts\;C:\Program Files\Python 3.5\;C:\Windows\System32;C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC;C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC제 PC에는 64비트 윈도우 7이 설치되어 있습니다.pip를 통해 이 오류를 완화하고 모..
파이썬에서 이렇게 변수를 선언할 수 있을까요?: var이것을 None으로 초기화하면서 그렇게 하면 안 되나요? 파이썬은 이를 허용하는 것 같지만, 액세스하면 바로 충돌하는 것 같습니다. 가능한가요? 불가능하다면, 왜 그런가요?수정: 나는 이와 같은 경우에는 이렇게 하고 싶습니다: valuefor index in sequence: if value == None and conditionMet: value = index break관련 질문들 Why can a function modify some arguments as perceived by the caller, but not others? Python Variable Declaration참고하세요 Python Names and Values Other lang..
다음 오류가 발생 중입니다. Exception in thread Thread-3:Traceback (most recent call last):File /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py, line 810, in __bootstrap_innerself.run()File /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py, line 763, in runself.__target(*self.__args, **self.__kwargs)File /Users/Matthew/Desktop/Skypebot 2.0/bot.py, line..