코드업 파이썬 기초 100제 정리 - 6001 ~ 6025

Yean·2024년 6월 24일
0

코딩테스트

목록 보기
1/4
post-thumbnail
print("Hello")
print("Hello World")
print("Hello")
print("World")
print("'Hello'")
print('"Hello World"')
	* python에서 문장 출력하기 위해서는 ", ' 둘 다 사용 가능. 
    
print("\"!@#$%^&*()\'")
	* 특수문자 앞에 \ 붙이기. 
print("\"C:\\Download\\\'hello\'.py\"")
	* \를 안전하게 출력하기 위해서는 \\를 사용

-6008 : 6008 : [기초-출력] 출력하기08(py)

print("print(\"Hello\\nWorld\")")
c = input()
print (c)
c = input()
c = int(c)
print(c)
c = input()
c = float(c)
print(c)
c = input()
d = input()
c = int(c)
d = int(d)
print(c)
print(d)
c = input()
d = input()
print(d)
print(c)
c = input()
c = float(c)
print(c)
print(c)
print(c)
a, b = map(int,input().split())
print(a)
print(b)
a, b = input().split()
print(b,a)
s = input()
print(s,s,s)
a, b = input().split(':')
print(a,b, sep = ':')
a, b, c = input().split('.')
print(c,b,a, sep = '-')
a, b = input().split('-')
print(a,b,sep='')
s = input()
print(s[0])
print(s[1])
print(s[2])
print(s[3])
print(s[4])
s = input()
print(s[0:2], s[2:4], s[4:6], sep=' ')
h,m,s = input().split(':')
print (m)
a, b = input().split()
t = a+b
print(t)
a, b = input().split()
c = int(a) + int(b)
print(c)

일단 가볍게 몸풀기.
쉬운 문제지만 자만하지않기.

profile
정리하는 공간

0개의 댓글