본문 바로가기

Python97

안드로이드 돌핀버전 설치 https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html#2021 Android Studio Releases List | IntelliJ Platform Plugin SDK plugins.jetbrains.com https://developer.android.com/studio/archive 이게 내기준 제일 최신버전 누르면 바로 다운로드됨 https://redirector.gvt1.com/edgedl/android/studio/install/2021.3.1.17/android-studio-2021.3.1.17-windows.exe 그냥 온리 넥스트 후 피니쉬 2023. 6. 26.
파이썬(List & dictionary) 리스트와 딕셔너리 사용법 및 함수 정리 List(리스트) : 순서가 중요하게 값을 담음 ex : 0번째는 사과 1번쨰는 배 2번쨰는 딸기 ..... Dictionary(딕셔너리) : 키와 벨류로 값을 담는 자료형 키 : 벨류 list 사용법 : 대괄호 a_list = ['사과','배','감'] #결과값 ['사과','배','감'] print(a_list) #결과값 사과 print(a_list[0]) a_list = [ 2,'배',true] #결과값 [ 2,'배',true] print(a_list) #배열 안에 배열 a_list = [ 2,'배',true,['사과','감']] #결과값 [ 2,'배',true,['사과','감']] print(a_list) #배열 안에 배열 가져오기 a_list = [ 2,'배',true,['사과','감']] #결과.. 2023. 6. 25.
파이썬(String) 문자열 문법정리 문자열 길이 : len() text = "abcd" result = len(text) #결과값 5 print(result) 문자열 자르기 : 변수 [:자르고 싶은 곳까지 숫자] text = "abcd" result = text[:3] #결과값 abc print(result) 문자열 뒤부터 출력 : 변수 [자르고 싶은곳 숫자 :] text = "abcd" result = text[2:] #결과값 cd print(result) 문자열 원하는 값 : 변수 [여기부터 나와라 숫자 : 여기까지 나와라 숫자] text = "abcd" result = text[1:4] #결과값 bcd print(result) 문자열 복사 : 변수[:] 굳이 쓸 필요 없음 text = "abcd" result = text[:] #결과.. 2023. 6. 25.
파이썬 가위바위보 인공지능 프로그램 만들기 #가위/바위/보 를 선택하세요 #나 : 가위 #컴 : 보 # 결과 : 비김 from random import random from _ast import If me = input("가위/바위/보를 선택하세요") arr = ["가위","바위","보"] com = int(random()*4) print("니:{}".format(me)) print("컴퓨터{}".format(arr[com])) if (me=="가위" and arr[com]=="보") or (me=="바위" and arr[com]=="가위") or (me=="보" and arr[com]=="바위"): print("결과 : 이김") elif (me=="보" and arr[com]=="가위") or (me=="가위" and arr[com]=="바위".. 2023. 6. 24.
파이썬 OOP(Object Oriented Programming)객체지향 test test1 from future.backports.xmlrpc.client import boolean class Animal: # print("생성자") def __init__(self): self.flag_sound = True #메소드 def bbeonguri(self): self.flag_sound = False # 메모리에서 사라질떄 호출됨 def __dal__(self): # print("소멸자") pass # toSting과 같음 def __str__(self): return "소리능력" + str(self.flag_sound) # if __name__ == '__main__': # a = Animal() # print(a.flag_sound) # a.bbeonguri() # print(a.f.. 2023. 6. 23.
안드로이드 스튜디오 돌핀버전 다운로드 하는 방법 https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html#2021 Android Studio Releases List | IntelliJ Platform Plugin SDK plugins.jetbrains.com https://developer.android.com/studio/archive 이건 바로 다운로드됨 https://redirector.gvt1.com/edgedl/android/studio/install/2021.3.1.17/android-studio-2021.3.1.17-windows.exe 2023. 6. 23.