<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>파이썬 마스터 3급 예제들 by 해피코드</title>
      <link>https://padlet.com/happycode/1ut144otq02twxt5</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-08-02 23:04:14 UTC</pubDate>
      <lastBuildDate>2025-12-06 22:26:50 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>연산기본</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655046409</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/24dcb309a8d092a321caad127e938980/image.png" />
         <pubDate>2023-08-02 23:06:20 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655046409</guid>
      </item>
      <item>
         <title>연산자 우선순위</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655046811</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/84f2a22f482d1aa9dd2e98622a0490e2/image.png" />
         <pubDate>2023-08-02 23:07:33 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655046811</guid>
      </item>
      <item>
         <title>math모듈 </title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655047337</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/60134be5c2a8cfda62be4e107592f8fa/image.png" />
         <pubDate>2023-08-02 23:09:27 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655047337</guid>
      </item>
      <item>
         <title>random 모듈 </title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655047475</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/f3fdf190a94737709445c7676c7bf7f6/image.png" />
         <pubDate>2023-08-02 23:09:55 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655047475</guid>
      </item>
      <item>
         <title>round(), random모듈</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655047996</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/65ea4c13c005704d967424c63d69a026/image.png" />
         <pubDate>2023-08-02 23:11:43 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655047996</guid>
      </item>
      <item>
         <title>랜덤날짜만들기</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655048728</link>
         <description><![CDATA[<div>&lt;실습문제&gt;</div><div>코딩스터디 모임을 만들었습니다. 월 4번 모이는데, 3번은 온라인으로 1번은 오프라인으로 모이기로 하였습니다. 조건에 맞는 오프라인 모임 날짜를 정하는 프로그램을 작성하시오</div><div>조건 1. 날짜를 무작위로 뽑습니다.</div><div>조건2. 월별 일수가 다르므로 최소 일수인 28일 이내로 정한다.(28일까지만 날짜 선정)</div><div>조건3. 매월 1~3일은 스터디를 준비해야 하므로 제외한다.</div><div>조건4. 실행결과는 다음과 같은 형태로 나와야 한다. 단, 날짜는 무작위이므로 책과 결과가 다를 수 있다.</div><div>실행결과 : 오프라인 스터디 모임 날짜는 매월 18일로 선정됐습니다.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-02 23:13:31 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655048728</guid>
      </item>
      <item>
         <title>섭씨-&gt; 화씨 온도 변환하기</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655049391</link>
         <description><![CDATA[<div>#셀프 테스트</div><div>연산자를 이용해 온도 단위를 변환하는 프로그램을 만들어 보세요</div><div><br>조건1. 섭씨 온도를 저장하기 위한 변수를 만든다.</div><div>조건2 다음 공식을 이용해 섭씨 온도를 화씨 온도로 변수에 저장한다.</div><div>&nbsp; &nbsp; &nbsp; &nbsp;화씨온도 = (섭씨온도 * 9 /5) + 32</div><div>조건3 섭씨 온도와 화씨 온도를 다음과 같이 출력한다.</div><div><br>실행결과</div><div>섭씨온도가 30도일 때</div><div>섭씨 온도&nbsp; :30</div><div>화씨 온도 : 86.0</div><div><br>섭씨온도가 10도일 때</div><div>섭씨 온도&nbsp; :10</div><div>화씨 온도 : 50.0</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-02 23:15:43 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655049391</guid>
      </item>
      <item>
         <title>문자연산</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655051157</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/cd199467346c3b7273bf02ccd3bd7def/image.png" />
         <pubDate>2023-08-02 23:20:48 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655051157</guid>
      </item>
      <item>
         <title>문자열 슬라이싱</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655051589</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/3f566ea5eed62aa41c248d5cd8d81f45/image.png" />
         <pubDate>2023-08-02 23:22:00 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655051589</guid>
      </item>
      <item>
         <title>문자열 처리 함수 </title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655052815</link>
         <description><![CDATA[<div><strong>lower</strong>()&nbsp; 문자열을 <strong>소문자</strong>로 변환</div><div><strong>upper</strong>()&nbsp; 문자열을 <strong>대문자</strong>로 변환</div><div>islower()&nbsp; 문자열이 소문자인지 확인</div><div>isupper() 문자열이 대문자인지 확인</div><div><strong>replace</strong>() 문자열 <strong>바꾸기</strong></div><div>index() 찾는 문자열의 인덱스(없으면 오류발생)</div><div><strong>find</strong>()&nbsp; <strong>찾는</strong> 문자열의 인덱스(없으면 -1반환)</div><div><strong>count</strong>() 문자열이 나온 <strong>횟수</strong></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-02 23:25:52 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655052815</guid>
      </item>
      <item>
         <title>문자열함수</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655053722</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/b889211f8afd1dd9759dfc271e5b8ea2/image.png" />
         <pubDate>2023-08-02 23:28:31 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655053722</guid>
      </item>
      <item>
         <title>문자열 서식 지정자</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655054312</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/908b1425b9511eb51ec5cea787b1f450/image.png" />
         <pubDate>2023-08-02 23:30:10 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655054312</guid>
      </item>
      <item>
         <title>문자열 서식</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655055693</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1712531688/5dd63d45b231aeb8fb0ecb703b4cf031/image.png" />
         <pubDate>2023-08-02 23:34:13 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655055693</guid>
      </item>
      <item>
         <title>문자열 줄바꿈 &#39;\n&#39;</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655056102</link>
         <description><![CDATA[<div>문자열 안에서 줄바꿈하려고 할 때 가에 들어갈 탈출 문자로 올바른 것은?</div><div>print("아무래도 (가)&nbsp; 파이썬이 (가) 쉬워")</div><div>1. \e&nbsp; &nbsp; 2. \i&nbsp; &nbsp; &nbsp;3. \l&nbsp; &nbsp; &nbsp; 4. \n&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-02 23:35:23 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2655056102</guid>
      </item>
      <item>
         <title>리스트</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2657190799</link>
         <description><![CDATA[<div>-순서를 가진 복합자료형(정수,실수,문자형 등)<br>-인덱스와 추출은 문자열과 같음 (0부터시작)<br>-리스트안에 리스트를 담을 수 있음<br>-요소추가 : <br>&nbsp; 1) append() : 리스트 끝에 추가<br>&nbsp; 2) insert() : 특정 인덱스에 삽입<br>-리스트연결<br>&nbsp;1) +연산자로 두개 리스트 자료 모으기<br>&nbsp;2) extent() : 하나의 리스트에 다른 리스트 연결<br>-요소 삭제하기<br>&nbsp;1) 값을 공백으로 지정 : a[2] = []<br>&nbsp;2) pop() : 제일 끝에 위치한 자료 삭제<br>&nbsp;3) pop(인덱스) : 인덱스에 <strong>위치 </strong>자료 삭제<br>&nbsp;4) remove(값) : 삭제를 원하는 <strong>값</strong>을 넣어줌<br> *remove()는 값이 여러개인 경우 맨 처음값 삭제<br> 5) del : del a[2] 인덱스 위치 값을 del해라<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 인덱스 범위 지정가능 del a[0:2]<br> 6) clear() : 리스트 전체 삭제 a.clear()&nbsp;<br>-정렬하기&nbsp;<br> 1) sort() : a.sort() 기본 오름차순<br>     sorted(리스트) <br> 2) sort(reverse = True) : 내림차순으로<br>&nbsp; &nbsp; &nbsp;리스트명.reverse()<br><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-07 10:48:54 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2657190799</guid>
      </item>
      <item>
         <title>튜플 a = (10,20)</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2657191449</link>
         <description><![CDATA[<div>*리스트와 차이점<br>1) 리스트는 [], 튜플은 ()<br>2) 리스트는 값의 생성, 삭제, 수정 가능 하지만 튜플은 값 수정 안됨<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-07 10:50:29 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2657191449</guid>
      </item>
      <item>
         <title>딕셔너리 a={키1:값1, 키2:값2}</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2657195616</link>
         <description><![CDATA[<div>1) 키와 값으로 연결되어 콤마로 구분<br>2) 중괄호 {}<br>3) 키에는 문자열, 수치, 튜플 사용 가능<br>4) a[키1]<br>5) get() : a.get('키1')<br>6) 값 수정 : a['키1'] = '값1'<br>    딕셔너리명.update({키:값})<br>7) dict() : 딕셔너리 만들기&nbsp;<br>8) 추가 : a['키3'] = '값3'<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: setdefault() 사용<br>9) 삭제 : del, pop()&nbsp;<br>10) a.keys() : 키로 리스트<br>11) a.values() : 값들로 리스트<br>12) a.items() : 요소들로 리스트&nbsp;<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-07 11:00:55 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2657195616</guid>
      </item>
      <item>
         <title>집합 {Set}</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2657216732</link>
         <description><![CDATA[<div>1) 순서가 없어서 인덱스 사용 X<br>2) 동일한 요소 중복 X<br>3) in으로 값의 유무 판별<br>&nbsp; &nbsp;a={'RM','진','정국','제이홉'}<br>&nbsp; &nbsp;b = '정국' in a&nbsp; &nbsp; ---&gt; True<br>4) 합집합 ( | ) : union()<br>5) 교집합 ( &amp; ) : intersection()<br>6) 차집합 ( - ) : difference()<br>7) 대칭차 ( ^ ) : symmetric_difference()<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-07 11:56:34 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2657216732</guid>
      </item>
      <item>
         <title>함수기본</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2658655788</link>
         <description><![CDATA[<div>* 함수 만들기 (<strong>def</strong>)<br><strong>def </strong>함수이름 ():<br>&nbsp; &nbsp; 명령어 ()<br><br>* 함수 호출<br>&nbsp; &nbsp; <strong>함수_이름</strong>()<br><br>* 함수 값 리턴하기<br>def 함수1() :<br>&nbsp; &nbsp; 명령어() <br>&nbsp; &nbsp;<strong>&nbsp;return 리턴값</strong><br><br>n = <strong>함수1()&nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; ###리턴값이 돌아오기 때문에 변수에 저장해야함 <br></strong><br><br>* 매개변수의 사용<br>매개변수 : 함수 호출시 전달하는 값<br>def 함수_이름(매개변수) :<br>&nbsp; &nbsp; 명령(매개변수)<br><br>함수_이름(인자 값)<br><br>* 재귀함수<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-09 11:07:27 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2658655788</guid>
      </item>
      <item>
         <title>모듈</title>
         <author>happycode</author>
         <link>https://padlet.com/happycode/1ut144otq02twxt5/wish/2658655840</link>
         <description><![CDATA[<div>1) 함수들의 집합&nbsp;<br>2) import 모듈명&nbsp;<br>3) from : 특정 함수만 임포트&nbsp;<br>&nbsp; &nbsp; from math import pi : math 모듈에 있는 pi함수만 임포트<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-09 11:07:37 UTC</pubDate>
         <guid>https://padlet.com/happycode/1ut144otq02twxt5/wish/2658655840</guid>
      </item>
   </channel>
</rss>
