[Python] Repl.It - 입출력/나누기/올림/내림/math module
- string끼리 출력 : + # Read a string:a = input()# Print a string:print("Hello, " + a + "!") - string + int 출력 : , # Read an integer:a = int(input())# Print a value:print("The next number for the number ", a, " is ", (a + 1))print("The previous number for the number ", a, " is ", (a - 1)) - 정수 나누기 종류 print(63 / 5) : 소수점까지 나눈다print(63 // 5) : 정수까지만 나눈다print(63 % 5) : 나머지 계산 12.6123 - float# int는 무조건 ..