코드 ## 변수 선언 coffee=0 ## 함수 정의 def coffee_machine(button) : print("#1. 뜨거운 물을 준비한다."); print("#2. 종이컵을 준비한다"); if coffee == 1:…
Read More코드 inStr, outStr="","" count,i=0,0 inStr=input("문자열을 입력하세요 : ") count=len(inStr) for i in range(0,count) : outStr +=inStr[c…
Read More코드 import random ##함수 def getNumber(): return random.randrange(1,46) #1~45 ##변수 lotto=[] num=0 #메인 print("로또 추첨을 시작합니다.\n"); while True : …
Read MoreStep 1. Pycharm Installing 우선 설치 순서를 알아볼게요. 링크를 남겨둘 테니 들어가시면 됩니다. Priority, let's look at the installation order. I'll leave a link, so you can go in. …
Read More코드 list1=[] list2=[] value=1 for i in range(0,3) : for k in range(0,4) : list1.append(value) value +=1 list2.append(list1) list1=[]…
Read More코드 # 변수 선언 parking=[] top,carName,outCar=0,"A","" select=9 ##메인 코드 while (select !=3) : select=int(input("<1>입차 <2>출차…
Read More코드 예제 myList=[30,10,20] print("현재의 리스트 : %s" % myList) myList.append(40) print("append(40) 후의 리스트 : %s" % myList) myList.pop() print(&quo…
Read More#변수 선언 i,k,heartNum=0,0,0 #반복문 변수 numStr,ch,heartStr="","","" #메인 코딩 numStr=input("숫자를 여러개 입력하세요 : ") #"5678"…
Read More3의 배수를 제외한 수의 합계를 코딩해보겠습니다. hap, i=0,0 for i in range(1,101) : if i % 3==0 : continue hap+=i print("1~100의 합계(3의 배수 제외) : %d" % …
Read More파이참 윈도우 10 버전 다운 링크 Pycharm Windows 10 Version Down Link ↓↓↓↓↓ https://www.jetbrains.com/ko-kr/pycharm/download/#section=windows Professional( 유료 )와 Community(…
Read More파이참 다운로드 링크로 가주세요. ↓↓↓ Please go to the download link for Pycharm. ↓↓↓ https://www.jetbrains.com/ko-kr/pycharm/download/#section=linux Professional or Communit…
Read More