Sum of Prime Numbers in the Input in Python

In this post, we will see how to take the Sum of Prime Numbers in the Input in Python. This means we will ask the user to enter an integer, then we will calculate the sum of all prime numbers that come before the input integer.

Code:

try:
    n = int(input("Enter the value of n: "))
    prime_list = []
    sum = 0
    for i in range(2, n+1):
        for j in range(2, i):
            if i % j == 0:
               break
        else:
            sum = sum + i
            prime_list.append(i)
    print("Sum of ", end="")
    for i in prime_list:
        print(i, end=", ")
    print("is: ", sum)
except:
    print("Enter an integer only")

Output:

Sum of Prime Numbers in the Input in Python | Assignment Expert

Also Read:

Share:

Author: Harry

Hello friends, thanks for visiting my website. I am a Python programmer. I, with some other members, write blogs on this website based on Python and Programming. We are still in the growing phase that's why the website design is not so good and there are many other things that need to be corrected in this website but I hope all these things will happen someday. But, till then we will not stop ourselves from uploading more amazing articles. If you want to join us or have any queries, you can mail me at admin@copyassignment.com Thank you