#!/usr/bin/python3 # Helper to center nodes on grid cells # Execute with python 3 and give coordinates to be adjusted while(True): x = int(float(input("coordinate :"))) x = (x // 64) * 64 + 32 print("> fixed :", x) print("- - -")