Python Forum
Nested for loops with numbers
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Nested for loops with numbers
#6
(Apr-20-2017, 09:58 PM)volcano63 Wrote:
(Apr-20-2017, 08:56 PM)smbx33 Wrote:
.....
for copy in range(copies):
     ......

Since there's a standard module named copy, the variable with the same name may overshadow it(slim chance, but still). Names that may overshadow standard functions and modules are not recommended. 

How would you know which are? Single word that may sound like a standard function, e,g, map, filter, string. Rule of the thumb - when in doubt, add underscore at the end. Or use the beloved  Wink Pythonic snake style
for copy_ in range(copies):
would be correct then? thanks.
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,074 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,818 Oct-27-2019, 07:51 AM
Last Post: Larz60+
  nested for loops to recursion ashkea26 4 3,536 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,046 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