diff --git a/code_study/Baekjoon/python/4766.py b/code_study/Baekjoon/python/4766.py new file mode 100644 index 0000000..858ff07 --- /dev/null +++ b/code_study/Baekjoon/python/4766.py @@ -0,0 +1,2 @@ +temp = list(map(float, iter(input, "999"))) +print("\n".join([f"{temp[i+1]-temp[i]:.2f}" for i in range(len(temp)-1)])) \ No newline at end of file