Answers for "adding the first place value and second value in python"

0

adding the first place value and second value in python

two_digit_number = input("Enter a two digit number:- ")
first_Digit = int(two_digit_number[0])
second_digit_number = int(two_digit_number[1])
calculation = first_Digit + second_digit_number
print(calculation)
Posted by: Guest on July-27-2021

Code answers related to "adding the first place value and second value in python"

Python Answers by Framework

Browse Popular Code Answers by Language