문제📖
풀이🙏
|
를 사용하여 구한다.import sys
num1, num2 = map(int,sys.stdin.readline().split())
print(num1 | num2)
결과😎
출처📝
https://codeup.kr/problem.php?id=6061
문제📖
풀이🙏
^
를 사용하여 구한다.import sys
num1, num2 = map(int,sys.stdin.readline().split())
print(num1 ^ num2)
결과😎
출처📝
https://codeup.kr/problem.php?id=6062
문제📖
풀이🙏
list
에 넣고 max
함수로 리스트 내의 모든 요소 중, 최댓값을 출력한다.if
조건문으로도 구할 수 있다.import sys
nums = list(map(int,sys.stdin.readline().split()))
print(max(nums))
결과😎
출처📝
https://codeup.kr/problem.php?id=6063
문제📖
풀이🙏
list
로 정수를 받아 min
함수로 list
내의 최솟값을 구한다.if
조건문으로 구할수도있다.import sys
nums = list(map(int,sys.stdin.readline().split()))
print(min(nums))
결과😎
출처📝
https://codeup.kr/problem.php?id=6064
문제📖
풀이🙏
list
로 받는다.list comprehension
+ if
조건문으로 list
내의 요소들을 조건문으로 필터링한다.join
을 사용해 list
내의 요소들을 한 개씩 줄을 바꿔 출력한다.import sys
nums = list(map(int,sys.stdin.readline().split()))
result = [i for i in nums if i%2 == 0]
print("\n".join(map(str,result)))
결과😎
출처📝
https://codeup.kr/problem.php?id=6065
문제📖
풀이🙏
if else
조건문을 사용한다.import sys
a, b, c = map(int,sys.stdin.readline().split())
if a%2 == 0:
print("even")
else:
print("odd")
if b%2 == 0:
print("even")
else:
print("odd")
if c%2 == 0:
print("even")
else:
print("odd")
결과😎
출처📝
https://codeup.kr/problem.php?id=6066
문제📖
풀이🙏
if
elif
else
조건문으로 구현한다.import sys
num = int(sys.stdin.readline())
if num < 0 and num %2 == 0:
print('A')
elif num < 0 and num %2 != 0:
print('B')
elif num > 0 and num %2 == 0:
print('C')
else:
print('D')
결과😎
출처📝
https://codeup.kr/problem.php?id=6067
문제📖
풀이🙏
import sys
score = int(sys.stdin.readline())
if score >= 90 and score <= 100:
print('A')
elif score >= 70 and score <= 89:
print('B')
elif score >= 40 and score <= 69:
print('C')
else :
print('D')
결과😎
출처📝
https://codeup.kr/problem.php?id=6068
문제📖
풀이🙏
if
elif
else
로 구현한다.switch
로도 구현할 수 있다.switch
구현 하는 법 : https://velog.io/@cosmos/Python-switchword = str(input())
if word is 'A':
print("best!!!")
elif word is 'B':
print("good!!")
elif word is 'C':
print("run!")
elif word is 'D':
print("slowly~")
else:
print("what?")
결과😎
출처📝
https://codeup.kr/problem.php?id=6069
문제📖
풀이🙏
import sys
month = int(sys.stdin.readline())
if month >= 3 and month <= 5:
print('spring')
elif month >= 6 and month <= 8:
print('summer')
elif month >= 9 and month <= 11:
print('fall')
else:
print('winter')
결과😎
출처📝
https://codeup.kr/problem.php?id=6070