일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 한빛미디어서평단
- tensorflow
- 서평
- SQL
- 월간결산
- python visualization
- 시각화
- Ga
- Pandas
- Linux
- 파이썬 시각화
- Blog
- Python
- 티스토리
- Visualization
- Tistory
- 독후감
- Google Analytics
- matplotlib
- 서평단
- MATLAB
- 통계학
- 텐서플로
- 리눅스
- 딥러닝
- 매틀랩
- MySQL
- 블로그
- 한빛미디어
- 파이썬
- Today
- Total
목록ComputerLanguage_Program/PYTHON (129)
pbj0812의 코딩 일기
컴퓨터 새로 맞춘지 6개월이 지난 지금에서야 겨우 TENSORFLOW-GPU 버전을 설치하였다... 그만큼 초보자에게 있어 GPU 버전 설치는 힘들다.... CUDA랑 CUDNN 버전을 맞춰야 하고 또 파이썬을 뭘 맞춰야 하고... 그래서 이번에 설치한 김에 복기를 하여 적기로 하였다... 물론... 이건 지금 내 컴퓨터의 상황에 맞춰 설치한 것이기 때문에... 모든 분에게 해당하는 이야기는 아닐지도 모른다... 결국 자신의 컴 상황에 맞춰 설치해야 하기 때문에 그냥 경우의 수를 한 가지 늘린 것이라 보면 좋겠다. 결론은! ANACONDA를 이용하여 설치하였다. 결국 문제는 CUDA랑 CUDNN 버전을 맞추는게 어렵기 때문인데... ANACONDA를 이용하면 자동으로 설치할 수 있다. 1. CUDA를 설..
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. n, r = [int(i) for i in input().split()]l = [i*r for i in range(n)]print(*l)
print(sum(ord(x) for x in input()))
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. n = int(input())q=""for i in input().split(): digit = int(i) q+=str(digit)# Write an action using print# To debug: print("Debug messages...", file=sys.stderr)print(0 if int(q)==0 else "".join(sorted(q)[::-1]))
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. s = input() # Write an action using print# To debug: print("Debug messages...", file=sys.stderr) t = 0for c in s.lower(): t += ord(c) - ord('a') + 1print(t)
import sysimport math # Auto-generated code below aims at helping you parse# the standard input according to the problem statement. s = input().split()[::-1] # Write an action using print# To debug: print("Debug messages...", file=sys.stderr) print(*s)
http://doriri.tistory.com/30
for i in input(): k=ord(i)-13 if k
a=''value_count = int(input())for value in input().split(): a+=chr(int(value,16))print(a)
print("제 나이는 %d 살 입니다." %20) print("저의 이름은 %s 입니다" %"홍길동") age = 22 print("제 나이는 %d 살 입니다." %age) age = 22name = "홍길동"print("저의 이름은 %s 입니다. 나이는 %d 입니다." %(name,age)) 포맷 코드%s : 문자열%d : 정수%f : 실수형%c : 문자%o : 8진수%x : 16진수%% : 리터럴 % print("완치될 확률은 %d%% 입니다" %70) 소수점 표현하기 print("%0.5f" %2.454545). 뒤의 숫자는 소수점 자릿수 정렬과 공백처리 print("%10s" %"hello")자릿수 10개 만들어 놓고 뒤부터 정렬print("%-10s" %"hello")자릿수 10개 만들어 놓고..