Today I Learned D - 14

손상훈·2022년 9월 16일
0

< 키? 나이? 사진추가비용? >

print("Welcome to the rollercoaster!")
height = int(input("What is your height in cm? "))
bill = 0

if height >= 120:
    print("You can ride the rollercoaster!")
    age = int(input("What is your age? "))
    if age < 12:
        bill = 5
        print("Child tickets are $5.")
    elif age <= 18:
        bill = 7
        print("Youth tickets are $7.")
    else:
        bill = 12
        print("Adult tickets are $12.")

   wants_photo = input("Do you want a photo taken? Y or N. ")
    if wants_photo == "Y":
        bill += 3

   print(f"Your final bill is ${bill}")

< 사랑 계산기 >

print("Welcome to the Love Calculator!")
name1 = input("What is your name? \n")
name2 = input("What is their name? \n")

combined_string = name1 + name2
lower_case_string = combined_string.lower()

t = lower_case_string.count("t")
r = lower_case_string.count("r")
u = lower_case_string.count("u")
e = lower_case_string.count("e")

true = t + r + u + e

l = lower_case_string.count("l")
o = lower_case_string.count("o")
v = lower_case_string.count("v")
e = lower_case_string.count("e")

love = l + o + v + e

love_score = int(str(true) + str(love))

print(love_score)

if (love_score < 10) or (love_score > 90):
    print(f"your love score is {love_score}, you go together like coke and mentos")
elif (love_score >= 40) and (love_score <= 50):
    print(f"your score is {love_score},u are alright together")
else:
    print(f"ur score is {love_score}")

.lower()

  • 문자를 소문자로 다 바꿔준다.

4일차 < random >

import random

  • 랜덤 숫자를 사용하기 위해 프로그램파일을 가져옴.

randict(x,y)

  • 두 정수 사이에서 랜덤하게 정수를 출력시켜줌.

< list >

.append

  • 리스트항목추가

.extend

  • 다량리스트항목 추가

range(시작,미만,증가단위량)

  • 느낀점

    따라서 해보긴 했지만 전보다 이제 문제를 봤을 때 어떤걸 써야할지 눈에 보이기 시작했다. 다시 복습하여 한번 더 보면 익숙해질 거 같다. 오늘부터 거북이반 금,월,화,수까지 오후7시~9시까지 맞춤교육을 해주시는데 들어보니 조금은 더 도움이 되어서 좋았다. 질문을 준비해오라고 하셨는데 질문할것은 생각나지않았고 아직 각각의 코드의 쓰임새가 익숙치 않아서 잘 떠올르지 않아 코드예제들을 다량보고 눈에 익혀둬야 할 거 같다.

profile
< 코린이의 코딩모험기 >

0개의 댓글