Give a segment of python code that will print the numbers 1 to 7, each one on a new line

for x in range(1,8) : print(x) The range(1,8) function gives us an array of numbers from 1 to 7. The number on the right is the upper bound of the numbers which is why only 1 to 7 is returned.From here, a for loop is used, basically saying for each number inside the array, print this number.

JC

Related Python Mentoring answers

All answers ▸

Manually implement a function that finds the smallest value in a list of integers and print it.


Write a Python script to take a product name as input and then automatically google search reviews for it and open the top 3 search results in different tabs


What is the difference between a cycle "if" and "while"?


how to compute the factorial of a number.