ItSolutionStuff.com

Sum of First and Last Digit of a Number in Python

By Hardik Savani • October 30, 2023
Python

Hey Artisan,

Here, I will show you sum of first and last digit in python. step by step explain sum of first and last digit python. This example will help you python sum of first and last digit of number. I explained simply step by step python program to find sum of first and last digit of a number.

There are several ways to sum first and last digit of number in python. Here's an example code in Python to find the sum of the first and last digits of a given integer:

Example 1:

main.py

number1 = 43567
    
# Get First Digit from Number
lastDigit = str(number1)[0]
lastDigit = int(lastDigit)
  
# Get Last Digit from Number
firstDigit = str(number1)[-1]
firstDigit = int(firstDigit)
  
sum = firstDigit + lastDigit
    
print(sum)

Output:

11

Example 2:

main.py

num = int(input("Enter an integer: "))  # get input integer
    
# convert integer to string to access individual digits
num_str = str(num)
    
# get the first and last digits
first_digit = int(num_str[0])
last_digit = int(num_str[-1])
    
# calculate the sum of the first and last digits
sum = first_digit + last_digit
  
print("The sum of the first and last digits of", num, "is", sum)

In this code, we first prompt the user to input an integer. We then convert the integer to a string so that we can access the individual digits. We get the first digit using num_str[0] and the last digit using num_str[-1]. Finally, we add the first and last digits and store the result in the variable sum, which we then print out.

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get the Last Digit of a Number in Python?

Read Now →

How to Get the First Digit of a Number in Python?

Read Now →

Python Remove All Decimals from Number Example

Read Now →

Python Convert String to Float with 2 Decimal Places Example

Read Now →

Python Format Number to 2 Decimal Places Example

Read Now →

How to Sort List Descending in Python?

Read Now →

How to Reverse a List in Python?

Read Now →

Python Write CSV File from List Example

Read Now →

How to Check If a List is Empty or Not in Python?

Read Now →

Python Convert List into String with Commas Example

Read Now →

How to Remove Last Element from List in Python?

Read Now →

How to Remove First Element from List in Python?

Read Now →

Python Delete Directory if Exists Example

Read Now →

How to Check if Today is Wednesday or not in Python?

Read Now →