Python Zahl Abrunden

# abrunden auf die nächste ganze Zahl
import math

x = 1.5
y = math.floor(x)

print(y)
Marc Tolkmitt