본문 바로가기

Programming33

[Python] 현재 날짜, 시간 구하기 (datetime 모듈) Python datetime 모듈 Available Types datetime 사용 현재 날짜 가져오기 datetime. 을 생략하고 싶으면 from datetime import datetime 으로 import datetime datetime.datetime.today() datetime.datetime.now() print(datetime.datetime.now()) # 2020-01-07 15:40:15.087337 now = datetime.datetime.now() print(now) # 2020-01-07 15:40:15.087337 년, 월, 일, 시, 분, 초 import datetime now = datetime.datetime.now() print(now.year) # 2020 prin.. 2022. 7. 16.
[Python] Visaul Studio Code에서 인터프리터 변경 / Anaconda 가상환경 생성 / 변경 [Python] Visaul Studio Code에서 인터프리터 변경 / Anaconda 가상환경 생성 / 변경 Anaconda Navigator에서 Enviroments를 선택하고 Create 클릭 이름과 버전을 입력하고 Create 좌측 리스트에서 패키지 선택 가능 Cmd / Anaconda prompt에서 가상환경 생성 conda create -n [name] python=[version] 생성한 가상환경으로 이동(활성화) conda activate [name] 가상환경에서 나오기 conda deactivate 가상환경 제거 (--all : 모든 패키지 및 설정 삭제) conda remove -n [name] -all 인터프리터 변경 Ctrl + Shift + P 를 눌러 Command Palett.. 2020. 10. 28.
[Python] Visual Studio Code에서 No name 'QApplication' in module ‘PyQt5.QtWidgets’ 에러 (No-name-in-module Error) [Python] Visual Studio Code에서 No name 'QApplication' in module ‘PyQt5.Qt’ 에러 (No name in module) No name 'QApplication' in module 'PyQt5.QtWidgets' No name 'QApplication' in module 'PyQt5.QtWidgets' ... Python과 PyQt5가 모두 설치되어 있지만 위 에러가 나타날 때. .pylintrc 파일 extension-pkg-whitelist= 부분에 PyQt5를 추가 .pylintrc 생성되어 있지 않은 경우 기본적으로 우측 하단에 Install 메시지가 나타납니다. 이 메시지가 뜨지 않는다면 pip install pylint으로 pylint를 설치.. 2020. 10. 28.
[Android][Kotlin] 안드로이드 스피너(Spinner) 구현 [Android][Kotlin] 안드로이드 스피너(Spinner) 구현 1. res/value에 spinner_item.xml 생성 후 아이템 추가 0 1 2 3 4 5 2. layout 안에 스피너 생성 android:entries으로 생성한 엔트리 연결 3. onItemSelectedListener / 아이템 선택 이벤트 test_spinner.onItemSelectedListener = object : AdapterView.OnItemSelectedListener { override fun onNothingSelected(parent: AdapterView?) { //아무것도 선택 안했을 때 } override fun onItemSelected( parent: AdapterView?, view: V.. 2020. 6. 10.
[Android] elevation 그림자 설정 [Android] elevation 그림자 설정 배경색이 들어가지 않으면 그림자 효과가 적용되지 않는다. 또한 그림자가 들어갈 수 있을 정도의 충분한 공간이 필요하다. 2020. 6. 10.
[Kotlin] 날짜/시간 구하기 (Calendar) [Kotlin] 날짜/시간 구하기 (Calendar) val cal = Calendar.getInstance() val year = cal.get(Calendar.YEAR).toString() val month = (cal.get(Calendar.MONTH) + 1).toString() val day = cal.get(Calendar.DATE).toString() View.setText("$year-$month-$day") https://developer.android.com/reference/kotlin/android/icu/util/Calendar 2020. 6. 9.