반응형 input2 [파이썬] input() vs sys.stdin.readline() 반복문 안에서 입력을 받을 때 input()과 sys.stdin.readline()의 시간 차이가 많이 난다고 한다. 그래서 이 두 기능이 어떻게 다른 지 정리해보려고 한다. 우선 참고한 사이트는 아래와 같다. https://www.geeksforgeeks.org/difference-between-input-and-sys-stdin-readline/ Difference between input() and sys.stdin.readline() - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming artic.. 2023. 6. 14. Python 직각삼각형 출력하기 [코딩테스트 입문 - Day6] 문제 구현 수를 입력받아 2중 반복문으로 *을 출력해 주면 된다. 코드 n = int(input()) for i in range(1,n+1): for j in range(i): print('*', end='') print('') 위의 구현대로 한 방법이다. 다른 풀이 n = int(input()) for i in range(1,n+1): print('*'*i) 이 방법은 print에서 *작업으로 출력을 해주어 반복문을 한 번만 사용했다. 좋은 아이디어다. 2023. 2. 8. 이전 1 다음 반응형