how to make a of numbers out of a for loop in python code example

Example 1: how to add numbers in python using for loop

n = input("Enter Number to calculate sum")
n = int (n)
sum = 0
for num in range(0, n+1, 1):
    sum = sum+num
print("SUM of first ", n, "numbers is: ", sum )

Example 2: how to add a number after each number in an array with a for loop in C++

#include<iostream>
	using namespace std;

	int main()
	{
		int a[4];
		int i;

		for ( i = 0; i < 4; i++ )
			a[i] = 0;
		for ( i = 0; i < 4; i++ )
			cout << a[i] << '\n';
		return 0;
	}