본문 바로가기
Skill Stacks/Python

Udemy : Python 개발 완전 정복

by JayAlex07 2023. 1. 2.

Udemy : Python 개발 완전 정복

#1. Create a greeting for your program.

#2. Ask the user for the city that they grew up in.

#3. Ask the user for the name of a pet.

#4. Combine the name of their city and pet and show them their band name.

#5. Make sure the input cursor shows on a new line:

print("Welcome to Band Name Generator")

city = input("Which city did you grow up in?\n")

pet = input("What is the name of your pet?\n")

print(f"The name of your band is {city} {pet}")

print와 input을 적절하게 사용해서 밴드 이름을 만드는 것이다

  • 도시 이름과 애완 동물 이름을 합해서 밴드 이름을 만드는 아주 간단한 실습이었다

\n 을 사용하여 터미널에 input에 대한 질문에 답을, 질문 밑에다 쓸 수 있게 한다

  • \n이 없을 때
Which city did you grow up in?Seoul
What is the name of your pet?Jatty
  • \n이 있을 때
Which city did you grow up in?
Seoul
What is the name of your pet?
Jatty

후기

이미 한번 배운 내용이라 매우 쉬웠다. 그래도 한번 다시 복습을 제대로 하는 느낌이어서, 지루하지는 않았다.

앞으로는 내가 아는 내용이면 최대한 문제 풀이와 실습 위주로 강의를 들어야겠다고 생각했다.

그리고 영어를 복습할겸, 수업을 영어로 들을 수 있어서 좋았다 ㅎㅎ

'Skill Stacks > Python' 카테고리의 다른 글

Udemy : Python 함수와 카렐  (0) 2023.01.07
Udemy : Python 반복문  (0) 2023.01.06
Udemy : Python 모듈 / 리스트  (0) 2023.01.05
Udemy : Python 흐름 제어와 논리 연산자  (1) 2023.01.04
Udemy : Python 계산, 반올림  (0) 2023.01.03