This is called casting. Example: x = "25" y = int (x) This is vital when you take input from a user. User input always arrives as a string. You must convert it to an integer before doing math. Stay ...