충 민
충민이의 개발블로그
충 민
전체 방문자
오늘
어제
  • 분류 전체보기 (101)
    • Java (16)
    • Python (21)
      • 웹 스크래핑 (9)
      • Python (0)
    • BaekJoon (7)
    • 네트워크 (6)
    • JavaScript (9)
      • Node.js (1)
      • React.js (2)
      • 바닐라.js (6)
      • TypeScript (0)
    • JSP (15)
    • DataBase (1)
      • Oracle (1)
    • CS지식 (1)
    • Spring (18)
    • App (0)
      • React Native (0)
    • GIT (3)
    • Wearable Device (2)
      • Fitbit (2)
    • AWS (1)
    • 대용량 트래픽 처리 (0)
    • 마음가짐 (0)
    • 교육후기 (1)

블로그 메뉴

  • 홈
  • 태그
  • 방명록

공지사항

인기 글

태그

  • Lombok
  • 롬복
  • spring
  • Java
  • 어노테이션
  • 스크래핑
  • jsp
  • 크롤링
  • 등록
  • 게시물
  • jdbc
  • 웹크롤링
  • 파이썬
  • FLASK
  • 오라클
  • 게시판
  • Oracle
  • 웹
  • 세팅
  • 환경설정
  • Python
  • 스프링
  • db
  • scrapper
  • Crawling
  • setter주입
  • mvc
  • Controller
  • scrapping
  • 웹스크래핑

최근 댓글

최근 글

티스토리

hELLO · Designed By 정상우.
충 민

충민이의 개발블로그

Python

파이썬 코딩 도장 3장-12장 심사 문제

2022. 7. 25. 19:17
 
#3.8

print('Hello, world!')
print('Hello, world!')

#5.6

print(102*0.6+225)

#6.7

a=50
b=100
c=None
print(a)
print(b)
print(c)

#6.8

mat,kor,eng,sci = map(int,input().split())
avg = (mat+kor+eng+sci)/4

print(int(avg))

#7.5

year, month, day, hour, minute, second = input().split()
print(year, month, day,sep='-',end=' ')
print(hour,minute, second, sep=':')

#8.5

kor, eng, mat, sci = map(int, input().split())
if kor>=90:
    if eng>80:
       if mat>85:
           if sci>=80:
               print(True)

#9.4

s= ''''python' is a "programming Language"
that lets you work quickly
and
integrate systems more effectively.'''
print(s)

#10.5

a = tuple(range(-10,10,int(input())))
print(a)

#11.9

a= input()
b= input()

print(a[1::2]+b[: :2])

#12.5

a = list(input.split())

b = list(input.split())

c = dict(zip(a,b))
print(c)
​​

'Python' 카테고리의 다른 글

숫자 야구 -시도 횟수 줄이기(진행중)  (0) 2022.07.26
로또 당첨 프로그램  (0) 2022.07.26
별 찍기 : for문  (0) 2022.07.26
별 찍기 : while 버전  (0) 2022.07.26
사칙연산 계산기(if ,elif문 사용)  (0) 2022.07.26
    'Python' 카테고리의 다른 글
    • 로또 당첨 프로그램
    • 별 찍기 : for문
    • 별 찍기 : while 버전
    • 사칙연산 계산기(if ,elif문 사용)
    충 민
    충 민
    깃허브 주소: https://github.com/IluvRiver

    티스토리툴바