result = 4//2
print(result)
print(type(result))
result /=2
print(result)
print(type(result))
score = 0 #int
height =1.8 #float
isWinning = True #boolean
# F-string
print(f'your score is {score} , your height is {height}, your winning {isWinning}')
print("your score is " + str(score) + ", your height is " + str(height) + ", your winning: " + str(isWinning))
연산자는 java와 같은데
// 날림처리
** 제곱
반올림 (round)
f- string
f' {변수}'
+string 로 형변환하는 이유