Python Forum
Nested for loops with numbers
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Nested for loops with numbers
#1
Hey guys so I am running into a problem with my code:

Basically I need to write a code that prompts for two numbers (Limit and Copies) and then writes all the numbers from 1 (startvalue) up to and including Limit, Copies number of times and I also need to use nested loops.

Then I have to write a function that that prints out a row of numbers separated by tabs, from (startvalue) to and including limit.



So far I have something looking like this..

startvalue = (1)
limit = int(input("Please enter a limit"))
copies = int(input("How many copies would you like?"))
list = [startvalue,limit]
for i in range (copies):
    print (startvalue,limit)
Please enter a limit3
How many copies would you like?2
1 3
1 3
So I guess I just want to know how to print the numbers say from 1 to 5 in a row depending on how many copies I input e.g 3 copies

e.g 1 2 3 4 5
Reply


Messages In This Thread
Nested for loops with numbers - by Liquid_Ocelot - Apr-19-2017, 10:01 PM
RE: Nested for loops with numbers - by Larz60+ - Apr-19-2017, 11:23 PM
RE: Nested for loops with numbers - by smbx33 - Apr-20-2017, 08:56 PM
RE: Nested for loops with numbers - by volcano63 - Apr-20-2017, 09:58 PM
RE: Nested for loops with numbers - by smbx33 - Apr-21-2017, 12:37 AM
RE: Nested for loops with numbers - by nilamo - Aug-15-2017, 06:38 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Random Generator: From Word to Numbers, from Numbers to n possibles Words Yamiyozx 2 1,473 Jan-02-2023, 05:08 PM
Last Post: deanhystad
  Problem with nested loops robert5502001 7 3,658 Aug-01-2022, 06:26 AM
Last Post: stevensanders
  Convert list of numbers to string of numbers kam_uk 5 3,075 Nov-21-2020, 03:10 PM
Last Post: deanhystad
  computing average in nested loops cap510 5 5,226 Sep-11-2020, 12:33 PM
Last Post: deanhystad
  Capitalize first letter of names in nested loops student_of_python 9 4,820 Oct-27-2019, 07:51 AM
Last Post: Larz60+
  nested for loops to recursion ashkea26 4 3,537 Nov-02-2018, 05:00 PM
Last Post: ichabod801
  Nested loops in openCV JimmyJangle 1 4,851 Apr-17-2018, 04:10 AM
Last Post: Mekire
  Regular Expressions in Files (find all phone numbers and credit card numbers) Amirsalar 2 4,138 Dec-05-2017, 09:48 AM
Last Post: DeaD_EyE
  Nested loops, lists and if statements Liquid_Ocelot 10 9,047 Apr-23-2017, 02:02 PM
Last Post: Mekire

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020