Python Forum
Nested for loops with numbers
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Nested for loops with numbers
#3
Your code literally prints out the initial values entered, and that loops for the number of copies you want. To get the result you wish.... you have to make python count up from a number to the end number. You don't have anything in your code that does that. Below is code that solves the requirement of using nested loop and it counts from start_value to end_value, printing out a list with the results.




limit = int(input("please enter limit"))
copies = int(input("please enter copies"))
start_value = 1
end_value = 0
results = []
for copy in range(copies):
   while end_value < limit:
       end_value += 1
       results.append(end_value)
   print(results)
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,521 Jan-02-2023, 05:08 PM
Last Post: deanhystad
  Problem with nested loops robert5502001 7 3,727 Aug-01-2022, 06:26 AM
Last Post: stevensanders
  Convert list of numbers to string of numbers kam_uk 5 3,133 Nov-21-2020, 03:10 PM
Last Post: deanhystad
  computing average in nested loops cap510 5 5,277 Sep-11-2020, 12:33 PM
Last Post: deanhystad
  Capitalize first letter of names in nested loops student_of_python 9 4,905 Oct-27-2019, 07:51 AM
Last Post: Larz60+
  nested for loops to recursion ashkea26 4 3,574 Nov-02-2018, 05:00 PM
Last Post: ichabod801
  Nested loops in openCV JimmyJangle 1 4,883 Apr-17-2018, 04:10 AM
Last Post: Mekire
  Regular Expressions in Files (find all phone numbers and credit card numbers) Amirsalar 2 4,188 Dec-05-2017, 09:48 AM
Last Post: DeaD_EyE
  Nested loops, lists and if statements Liquid_Ocelot 10 9,149 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