Seperating int & str then addition? (Phyton) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Seperating int & str then addition? (Phyton)

For example: we had the input “12+12” from user. How to separate this and code for math addition?

4th Jul 2020, 12:01 PM
YAKUP KARAKAŞ
YAKUP KARAKAŞ - avatar
1 Answer
+ 1
if I code something like this: command = input(“enter a number (number - operator - number): “) parseCommand = command.split() if len(parseCommand) != 3: print(“invalid entry”) exit(0) try: number1 = int(parseCommand[0]) operator = parseCommand[1] number1 = int(parseCommand[2]) except ValueError: print(“you need to enter a numeric value”) exit(0) if operator == “+”: print(command, “=“, number1 + number2) elif operator == “-“: print(command, “=“, number1 - number2) elif operator == “*“: print(command, “=“, number1 * number2) elif operator == “/“: print(command, “=“, number1 / number2) # this code splits with spaces (12 + 12) and calculates the values entered. # but how can I integrate the code you gave me here if there is no spaces between the characters that user entered. #thank you so much. also a while circle would be more appreciated :)
4th Jul 2020, 2:46 PM
YAKUP KARAKAŞ
YAKUP KARAKAŞ - avatar