Python Array Solution Q1
Write a program that takes five integers from the user, stores them in an array, and then prints the sum of these integers solved in Python.
from array import array
# Create an array of integers
int_array = array('i', [])
# Take five integer inputs from the user
for _ in range(5):
user_input = int(input("Enter an integer: "))
int_array.append(user_input)
# Calculate and print the sum of the integers in the array
sum_of_integers = sum(int_array)
print(f"The sum of the integers is: {sum_of_integers}")
In this program:
We import the array module.
An empty array of integers ('i' typecode) is created.
A loop is used to take five integer inputs from the user, and each input is appended to the array.
The sum() function is used to calculate the sum of the integers in the array.
The result is printed.
This program ensures that the user enters valid integers and calculates the sum of those integers using the array module.
Comments
Post a Comment
If you have any doubts, Please let me know .