일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- nginx-media-server
- Kubernetes
- Python
- Flutter
- aws
- Java
- service
- ebpf
- HLS
- Sysinternals
- Pod
- configmap
- dart
- kubectl
- namespace
- android studio
- Shell script
- VSCode
- deployment
- spring cloud config
- macos
- ffmpeg
- Windows10
- aws cli
- docker
- golang
- Android
- 행정구역분류
- wireshark
- RTMP
- Today
- Total
목록Python (12)
woonizzooni
실행 시간 측정 timeit모듈 이용. https://docs.python.org/2/library/timeit.html https://docs.python.org/3/library/timeit.html ex) #!/usr/bin/python3 # -*- coding: utf-8 -*- import timeit def func_a(n): .... def func_b(n): .... def func_c(n): .... def func_d(n): .... print("func_a(4000) : ", timeit.timeit('func_a(4000)', "from __main__ import func_a", number=1)) print("func_b(4000) : ", timeit.timeit('func_b..
최근 모(?) 게시판에 N게임사 직원 python 코딩 문의 글. 찾아보니 'pyramid patterns' 출력 문항인데 완전 똑같은 문제는 검색이 잘 안되네. 이 문제다! Input: 5 Output: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 7 8 9 10 4 5 6 2 3 1 내 코드 : n=4000일때 약 2~3초. 대충 짱구 굴려서... def func_jjh(n): i = 1 count = 0 line = '' num_stack = [] line_stack = [] reverse = False while True: line = '' if (reverse): line = line_stack.pop() else: num_stack.append(i) i += 1 if (le..
아주(!!) 초단간 코드로... 정보 선택 : 아래 그림의 '다음을 시작페이지로'를 가져와보자 (https://www.daum.net) 코드 작성 (예외처리 등은 고려하지 않음. 말그대로 예제...) #!/usr/bin/python # -*- coding: utf-8 -*- import requests from bs4 import BeautifulSoup def get(url): headers = {\ 'Host':'www.daum.net',\ 'Connection':'close',\ 'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)',\ 'Accept':'*/*',\ 'Accept-E..
python 설치된 상태 (Windows10에서 Microsoft Store에서 제공하는 Python 3.7을 설치함. 명령프롬프트에서 python입력하니 그쪽으로 랜딩되길래... 그냥 해봄) VSCode - Python 플러그인 설치된 상태 아래 경로를 workspace로, D:\Workspace\VSCode\ 그 밑에 가상환경을 만들까 한다. ('가상 환경' 참고 : https://docs.python.org/ko/3/tutorial/venv.html) VSCode실행 터미널 실행 : View > Terminal or Ctrl+Shift+` Workspace로 이동 & 가상 환경 생성 PS C:\Users\..........> cd D:\Workspace\VSCode\ PS D:\Workspace\V..