Hi I am new to Python having an indentation error in the following code:
print "------------------------- Basics Arithamatic Calculator-------------------------"
int_num_one=input('Enter First Num: ')
int_num_two=input('Enter Second Num: ')
list_options={"+", "-", "/", "*"}
print "Which operation you want to perform *, -, +, / ?"
char_selected_option=raw_input()
print "Operation selected is %r" % (char_selected_option)
for char_symbol in list_options:
print "Char symbol is %r" % (char_symbol)
bool_operation_Not_Found=True
if char_symbol==char_selected_option:
int_result=str(int_num_one) + char_selected_option + str(int_num_two)
print int_result
print "%d %s %d = %d" % (int_num_one, char_selected_option, int_num_two, eval(int_result))
bool_operation_Not_Found=False
break
if bool_operation_Not_Found:
print "Invalid Input"