We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a37a291 commit 6383f5bCopy full SHA for 6383f5b
1/1.py
@@ -0,0 +1,6 @@
1
+import time
2
+start_time = time.time() # 측정 시작
3
+
4
+# 프로그램 소스코드
5
+end_time = time.time() # 측정 종료
6
+print("time:", end_time - start_time) # 수행 시간 출력
0 commit comments