목록PS/Python (269)
지나가던 개발자
hihi = int(input()) if hihi == 0: print("YONSEI") else: print("Leading the Way to the Future") 연세가 "Yeonsei"가 아니라 "Yonsei"네... ㄷ
import datetime print(datetime.datetime.now().strftime('%Y-%m-%d')) 이렇게 datetime 모듈로 오늘 날짜를 불러올 수 있다.
from itertools import permutations n, m = list(map(int, input().split())) items = list(permutations(list(map(int, input().split())), 3)) for i in range(len(items)): items[i] = sum(items[i]) items = list(set(items)) if m in items: print(m) else: items = [x for x in items if x
수학은 체육과목 입니다(?) 체육은 수학과목 입니다(?) hihi = int(input()) print(0 + hihi + 1 + hihi*2 + hihi-1)
hihi = [] for i in range(int(input())): hihi.append(input()) if "anj" in hihi: print("뭐야;") else: print("뭐야?") 어떻게 뭐가 사람이름ㅋㅋㅋㅋㅋㅋㅋㅋ "뭐"를 "anj"로 표현하다니... 상상도 못했다.
팩토리얼에 관해서는 이미 저번에 글을 썼기 때문에 넘어가고, 바로 문제를 풀어 보도록 하겠다. import math print([i for i in list(str(math.factorial(int(input())))) if i not in ['0']][-1]) 입력받은 숫자의 팩토리얼 값을 문자열 리스트로 바꾼 뒤, 0을 전부 제거한다. 0을 전부 제거하는 것은 이 블로그를 참고했다. 그 뒤, 그 리스트의 맨 마지막 요소를 출력한다. 93B로 해당 문제의 숏코딩 21위를 했다...! 기쁘다...! 감격스럽다...! 내가 숏코딩 랭킹에 오르다니... 파이썬만 하면 무려 19위...! ...! ...!
hihi = [] for i in range(int(input())): hihi.append(int(input())) hihi.sort() for hi in hihi: print(hi) 파이썬의 "리스트.sort()"는 리스트를 오름차순 정렬한다.