InterviewSolution
Saved Bookmarks
| 1. |
Difference between input and raw input in python |
| Answer» Basically, the difference between raw_input and input is that the return type of raw_input is always string, while the return type of input need not be string only. Python will judge as to what data type will it fit the best. In case you have entered a number, it will take it as an integer. | |