Contact: aviboots(AT)netvision.net.il
41,389 questions
53,935 answers
573 users
import math print(math.floor(3)); print(math.floor(3.14)); print(math.floor(3.4)); print(math.floor(3.5)); print(math.floor(3.6)); print(math.floor(3.99)); ''' run: 3 3 3 3 3 3 '''