본문 바로가기

IT

파이썬 for beginner 3판 – chapter 4 self study

반응형

chapter 4 - 연산자


 

selfstudy 4-1


코드

## 전역 변수 선언 부분 ## 
money, c50, c10, c5, c1 = 0,0,0,0,0

## 메인 코드 부분 ## 
money=int(input("지폐로 교환할 돈은 얼마? "))

c50 = money // 50000
money %= 50000

c10 = money // 10000
money %= 10000

c5 = money // 5000
money %= 5000

c1 = money // 1000
money %= 1000

print("\n 50000원짜리 ==> %d장 " % c50)
print(" 10000원짜리   ==> %d장 " % c10)
print(" 5000원짜리 ==> %d장 " % c5)
print(" 1000원짜리   ==> %d장 "% c1)
print(" 지폐로 바꾸지 못한 돈 ==> %d원"% money)

selfstudy 4-2


코드

inValue=0
count=0
result=0
i=0

inValue=int(input("시프트할 숫자는? "))
count=int(input("출력할 횟수는? "))

for i in range(1, count+1) :
    result = inValue << i
    print("%d << %d = %d" % (inValue, i , result))

for i in range(1, count + 1) :
    result = inValue >> i
    print("%d >> %d = %d" % (inValue, i , result))