본문 바로가기
Problem Solving/CodeUp

[CodeUp][Python]코드업 기초 100제 6051~6060

by NoiB 2021. 9. 25.
반응형

요즘 이것저것 바쁜 일이 생기니 자꾸 포스팅이 늦어지네요.

그래도 열심히 해보겠습니다.

문제링크 : https://codeup.kr/problemsetsol.php?psid=33 

 

문제집 / Python 기초 100제

 

codeup.kr

6051:

a,b = map(int, input().split())
print(a != b)

6052:

n = int(input())
print(bool(n))

6053:

a = bool(int(input()))
print(not a)

6054:

a, b = input().split()
print(bool(int(a)) and bool(int(b)))

6055:

a,b = map(int, input().split())
if a == True or b == True:
    print('True')
else:
    print('False')

6056:

a,b = map(int, input().split())
print(bool(a)!=bool(b))

6057:

a,b = map(int, input().split())
print(bool(a)==bool(b))

6058:

a,b = map(int, input().split())
if bool(a)==False and bool(b)==False: print(True)
else: print(False)

6059:

a = int(input())
print(~a)

6060:

a,b = map(int, input().split())
print(a&b)

이번에는 조금 생소할 수 있는 이진수에 대한 내용들이 조금 나왔는데 처음 접하는 분들은 난해하다고 느낄지도 모르겠습니다. 그래도 코드업 문제 페이지에 설명이 자세히 적혀 있기 때문에 읽어보고 잘 이해가 되지 않는 부분은 직접 검색을 해보시거나 또는 댓글로 남겨주시면 제가 아는 선에서 대답을 해드리겠습니다.

반응형