I have a tuple of tuples from a MySQL query like this:
T1 = ((\'13\', \'17\', \'18\', \'21\', \'32\'), (\'07\', \'11\', \'13\', \'14\', \'28\'),
In Python 3.5.1 things like these work:
c = input('Enter number:') print (int(float(c))) print (round(float(c)))
and
Enter number: 4.7 4 5
George.