728x90
코드업 파이썬 기초 100제 문제의 풀이
6021)
S=input()
print(S[0], S[1], S[2], S[3], S[4], sep="\n")
6022)
S=input()
print(S[0:2], S[2:4], S[4:6])
6023)
h, m, s=input().split(':')
print(m)
6024)
w1, w2=input().split()
s=w1+w2
print(s)
6025)
a, b = input().split()
c = int(a) + int(b)
print(c)
6026)
a=float(input())
b=float(input())
print(a+b)
6027)
a = int(input())
print('%x'% a)
6028)
a = int(input())
print('%x'.upper()% a)
6029)
a = int(input(), 16)
print('%o' % a)
6030)
x=ord(input())
print(x)
6031)
x=int(input())
print(chr(x))
6032)
a=int(input())
print(-a)
6033)
x=ord(input())
print(chr(x+1))
6034)
a, b=map(int, input().split())
print(a-b)
6035)
a, b=map(float, input().split())
print(a*b)
6036)
w, n=input().split()
print(int(n)*w)
6037)
n = input()
s = input()
print(int(n)*s)
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)
728x90
'프로그래밍 > Python(파이썬)' 카테고리의 다른 글
[코드업:Code Up] 코드업 파이썬 기초 100제 6061~6070[python] (0) | 2022.03.24 |
---|---|
[코드업:Code Up] 코드업 파이썬 기초 100제 6041~6060[python] (0) | 2022.03.23 |
[코드업:Code Up] 코드업 파이썬 기초 100제 6001~6020[python] (0) | 2022.03.23 |
[백준] 2480: 주사위 세개-python[파이썬] (0) | 2022.03.23 |
[백준] 2525: 오븐 시계-python[파이썬] (0) | 2022.03.23 |