Decimal degrees = whole number of degrees + minutes divided by 60 + seconds divided by 3600, When you want to convert degree to degree minute second, it is the inverse operation.
For example, To 12.33o, The result d = int(12.33o) = 12o, m = int((12.33o - 12o) × 60) = 19', s = int((12.33o - 12o - 19'/60) × 3600) = 48", So 12.33o= 12o 19' 48"
For example, To 2.21o, The result d = int(2.21o) = 2o, m = int((2.21o - 2o) × 60) = 12', s = int((2.21o - 2o - 12'/60) × 3600) = 36", So 2.21o = 2o 12' 36"