# python_reverse_int **Repository Path**: mirrors_Matty9191/python_reverse_int ## Basic Information - **Project Name**: python_reverse_int - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-11 - **Last Updated**: 2025-12-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Overview Sample python code to reverse an integer. # Program execution The tests.py program will unit test the following inputs: * Passing in bad data "a" will return 0 * Passing in 0 will return 0 * Passing in -123 will return -321 * Passing in 123 will return 321 * Passing in 120 will return 21 # Running the tests You can use the following command to run the unit tests: $ ./test.py