Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코딩테스트
- 데이터 분석
- 통계
- 회귀분석
- 파이썬
- sklearn
- SQL
- 이코테
- 데이터 전처리
- Deep Learning Specialization
- ADsP
- 데이터분석
- tableau
- SQLD
- scikit learn
- Google ML Bootcamp
- 딥러닝
- 데이터분석준전문가
- matplotlib
- 시각화
- 머신러닝
- pytorch
- 이것이 코딩테스트다
- 자격증
- 태블로
- ML
- IRIS
- pandas
- r
- Python
Archives
- Today
- Total
함께하는 데이터 분석
[CodeUp] 코드업 파이썬 기초 100제 풀이(~6051) 본문
6001
print("Hello")
6002
print("Hello World")
6003
print("Hello\nWorld")
6004
print("'Hello'")
6005
print('"Hello World"')
6006
print("\"!@#$%^&*()'")
6007
print("\"C:\\Download\\'hello'.py\"")
6008
print('print("Hello\\nWorld")')
6009
print(input())
6010
print(int(input()))
6011
print(float(input()))
6012
print(input() + "\n" + input())
6013
a = input()
b = input()
print(b + "\n" + a)
6014
print((input() + "\n") * 3)
6015
a, b = map(str, input().split())
print(a+"\n"+b)
6016
a, b = map(str, input().split())
print(b + " " + a)
6017
print(((input() + " ") * 3).strip())
6018
print(input())
6019
y, m, d = map(str, input().split("."))
print(f"{d}-{m}-{y}")
6020
a, b = map(str, input().split("-"))
print(f"{a}{b}")
6021
print("\n".join(list(map(str, input()))))
6022
a = input()
print(a[0:2], a[2:4], a[4:])
6023
h, m, s = map(str, input().split(':'))
print(m)
6024
a, b = map(str, input().split())
print(a+b)
6025
a, b = map(int, input().split())
print(a+b)
6026
print(float(input()) + float(input()))
6027
print("%x" % int(input()))
6028
print("%X" % int(input()))
6029
print("%o" % int(input(), 16))
6030
print(ord(input()))
6031
print(chr(int(input())))
6032
print(-int(input()))
6033
print(chr(ord(input()) + 1))
6034
a, b = map(int, input().split())
print(a - b)
6035
a, b = map(float, input().split())
print(a * b)
6036
a, b = map(str, input().split())
print(a * int(b))
6037
a = int(input())
print(input() * a)
6038
a, b = map(int, input().split())
print(a ** b)
6039
a,b = map(float, input().split())
print(a ** b)
6040
a,b = map(int, input().split())
print(a // b)
6041
a, b = map(int, input().split())
print(a % b)
6042
print(format(float(input()), ".2f"))
6043
a, b = map(float, input().split())
print(format(a / b, ".3f"))
6044
a, b = map(int, input().split())
c = format(a / b, ".2f")
print(f"{a + b}\n{a - b}\n{a * b}\n{a // b}\n{a % b}\n{c}")
6045
a, b, c = map(int, input().split())
print(a+b+c, format((a+b+c)/3, ".2f"))
6046
print(int(input()) * 2)
6047
a, b = map(int, input().split())
print(a * 2 ** b)
6048
a, b = map(int, input().split())
print("True" if a < b else "False")
6049
a, b = map(int, input().split())
print("True" if a == b else "False")
6050
a, b = map(int, input().split())
print("True" if b >= a else "False")
6051
a, b = map(int, input().split())
print("True" if a != b else "False")
'코딩 테스트 > 코드업' 카테고리의 다른 글
[CodeUp] 코드업 파이썬 기초 100제 풀이(~6098) (0) | 2023.07.09 |
---|