본문 바로가기
반응형

- 배움이 있는 삶115

미국 부채한도 상향 합의 - 백악관 발표문 원문) Statement from President Joe Biden on Bipartisan Budget Agreement in Principle | The White House Statement from President Joe Biden on Bipartisan Budget Agreement in Principle | The White House Earlier this evening, Speaker McCarthy and I reached a budget agreement in principle. It is an important step forward that reduces spending while protecting critical programs for working people and gr.. 2023. 5. 28.
Python: list를 활용해 4*3*2 형태의 3차원 배열 생성하기 문제] : python list를 이용하여 4*3*2 형태의 3차원 배열 생성하기 문제 풀이] # 1차원 리스트 만들기 a = [1 for i in range(4)] print(a) # 4 * 3 의 2차원 리스트 만들기 a = [[1 for i in range(4)] for j in range(3)] print(a) # 4 * 3 * 2 의 3차원 리스트 만들기 a = [[[1 for i in range(4)] for j in range(3)] for k in range(2)] print(a) 출력] [1, 1, 1, 1] [[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]] [[[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]], [[1, 1, 1, 1].. 2023. 5. 25.
Python: list 중 홀수 번째 항목을 제거 한 후 출력하기 list 중 홀수 번째 항목을 제거 한 후 출력하기 num_list = [2, 34, 35, 60, 78, 130, 175] # range(a, b, c) # :range(A, B, C)에서 A에서 B-1만큼 C의 간격만큼 이동한다는 뜻인데요. 여기서 중요한 것은 0까지 내림차순으로 가고 싶은 경우 0 - 1 로 해서 -1로 간다는 것입니다. for i in range(6, -1, -1): if (i % 2 == 0): # del num_list(i) : mum_list(i)의 Function을 delete를 하는 것으로 error가 발생함, # list의 항목을 제거 하기 위해 num_list[i] 를 사용해야 함 del num_list[i] print(num_list) 2023. 5. 25.
Python: list 에서 짝수를 제거한 후 list 출력하기 python list 사용에 있어서, 단순히 사용하면, list내 데이타에 오류가 발생함을 알 수 있다. 1) 1개의 데이타가 제거가 되지 않는 현상 예제) num_list = [3, 8, 77, 35, 32, 10, 28] for x in num_list: if x % 2 == 0: num_list.remove(x) print(num_list) (Print) [3, 77, 35, 10] Process finished with exit code 0 (이슈 포인트) 해당 list에서 짝수를 모두 제거하고자 하나, 10 이라는 짝수가 계속 남아있다. (원인) 이는 list내의 값들을 remove() 함수가 기존의 값을 흩트리기 때문이었습니다. (해결 방법) num_list[:] 리스트는 값은 동일(num_l.. 2023. 5. 23.
JMeter 사용법 알아보기 window 환경에서 jmeter 사용법에 대한 정리 1. download : https://jmeter.apache.org/download_jmeter.cgi 링크에서 zip 파일을 다운로드 받는다 Apache JMeter - Download Apache JMeter Download Apache JMeter We recommend you use a mirror to download our release builds, but you must verify the integrity of the downloaded files using signatures downloaded from our main distribution directories. Recent releases (48 hours) may not y.. 2023. 5. 23.
서울/경기 중학교 학군 현황 - 특목고/자사고 입학 2023. 5. 21.
Gitlab 로고 바꾸기 로고를 바꾸고 싶은데, 그 방법을 몰라 찾다가, 그 내용을 정리 합니다. 아주 간단합니다. 1. 변경하고자 하는 gitlab으로 이동 2. Settings --> General 클릭 하면 아래와 같은 화면이 나옵니다. 3. 변경하고자 하는 이미지를 선택하기 위해 Choose file을 클릭하고, 이미지를 선택합니다. 4. Save chage를 클릭하면 로고가 변경됩니다. 5. 아래와 같이 변경됩니다 2023. 5. 4.
초보자가 사용하는 Gitlab 알아보기 1. Git을 사용하기 위해서는 먼저 git을 설치해야 한다. 아래에서 각자의 OS에 맞게 다운로드 받아 설치 한다. https://git-scm.com/download/win Git - Downloading Package Download for Windows Click here to download the latest (2.40.1) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 8 days ago, on 2023-04-25. Other Git for Windows downloads Standalone Installer 32-bit Git for Wind git-scm.com 2. C.. 2023. 5. 4.
2024년 일반대학 첨단분야 학과 정원 확대 2023. 4. 28.
대학이 주관하는 국내 영어캠프 현황 https://www.womennews.co.kr/news/articleView.html?idxno=51848 학부모 허리 휘고 자녀는 스트레스 - 여성신문 겨울방학마다 사립 특수목적고나 대학에서 운영하는 국내외 영어캠프 비용이 4주 안팎에 적게는 100만원에서 많게는 1000만원 이상 들어 학부모들의 경제적 부담을 가중시키고 있다. 비싼 비용을 www.womennews.co.kr 2023. 4. 9.
AI Trustworthiness evaluation chatGPT에서 만들어준 AI Trustworthiness 질문 예제 make the questionnaire about AI Trustworthiness Sure, here are some sample questions for a questionnaire about AI trustworthiness: Transparency: How clear and understandable are the AI system's explanations for its actions and decisions? Extremely clear Mostly clear Somewhat clear Not clear at all Fairness: To what extent do you believe the AI system is un.. 2023. 4. 6.
chatGPT 답변이 안올때 문제 chatGPT 답변이 안올때 - 어느땐가 아래와 같이 chat에 답변이 안오는 문제가 발생함 해결) traffic이 많아서 그런지, 종종 이런 문제가 발생하는데, 다시 로그인해서 접속하면 해결이 되곤 함 2023. 3. 31.
chatGPT와 Bing 챗봇과의 차이점 chatGPT와 Bing 챗봇의 차이점 - chatGPT는 전문인공지능 챗봇 - Bing챗봇dms 검색 전문인공지능 챗봇 사용해 보면 확실히 다르다는 것을 알 수 있습니다 2023. 3. 31.
학교/학원 정보등 커뮤니티 학교/학원 정보등 커뮤니티 1. 네이버 카페 : 상위 1% https://cafe.naver.com/mathall/1077766?art=ZXh0ZXJuYWwtc2VydmljZS1uYXZlci1zZWFyY2gtY2FmZS1wcg.eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjYWZlVHlwZSI6IkNBRkVfVVJMIiwiY2FmZVVybCI6Im1hdGhhbGwiLCJhcnRpY2xlSWQiOjEwNzc3NjYsImlzc3VlZEF0IjoxNjc5NzE2ODY1MzcyfQ.Tdhnwik_Zw53IYftkBKsC5P5rSy2PFcuzKItSaHUqlg 등촌동에 있는 등촌고등학교 어떤가요? 대한민국 모임의 시작, 네이버 카페 cafe.naver.com 2023. 3. 25.
학교 및 학원 관련 정보 site 1. "오늘의 학교" 라는 site가 있음 -동네별 학원정보, 학교 정보들을 찾아 볼수가 있음 https://academy.prompie.com/ 우리동네 학원 찾기 - 오늘학교 아카데미 오늘학교 아카데미에서 내게 맞는 학원을 찾아보세요! academy.prompie.com 2. 학교/학원 찾기 https://www.edufindkorea.com/edu/index.php 학교/학원찾기 - 전국 초등학교 중학교 고등학교 특수학교 학원 정보 학교 학원 전화번호 주소 후기 정보 제공 www.edufindkorea.com https://academy.prompie.com/academies/detail/823nt54/%EB%AB%BC%EB%B9%84%EC%9A%B0%EC%8A%A4%EC%88%98%ED%95%99.. 2023. 3. 25.
728x90
반응형