Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Factorial
#4
Some nitpicking about code style:

- It's good to follow naming conventions set for variables and functions in PEP 8:

Quote:Function names should be lowercase, with words separated by underscores as necessary to improve readability.

Variable names follow the same convention as function names.

mixedCase is allowed only in contexts where that's already the prevailing style (e.g. threading.py), to retain backwards compatibility.

So instead of getFactorial one should have get_factorial

- One should aim to write DRY (Don't Repeat Yourself) code. Therefore factorial = factorial * x could be written factorial *= x
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
Factorial - by leodavinci1990 - Jul-18-2019, 05:04 AM
RE: Factorial - by stranac - Jul-18-2019, 05:13 AM
RE: Factorial - by ndc85430 - Jul-18-2019, 05:52 AM
RE: Factorial - by leodavinci1990 - Jul-19-2019, 01:02 AM
RE: Factorial - by perfringo - Jul-18-2019, 08:04 AM
RE: Factorial - by DeaD_EyE - Jul-18-2019, 08:44 AM
RE: Factorial - by RUBI - Jul-18-2019, 09:10 AM
RE: Factorial - by ichabod801 - Jul-19-2019, 01:14 AM
RE: Factorial - by leodavinci1990 - Jul-19-2019, 10:59 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Comparing recursion and loops using two scripts (basic factorial) Drone4four 3 2,328 Oct-11-2020, 06:48 PM
Last Post: deanhystad
  Python factorial code timebrahimy 4 79,657 Sep-27-2020, 12:23 AM
Last Post: timebrahimy
  factorial, repeating Aldiyar 4 2,889 Sep-01-2020, 05:22 PM
Last Post: DPaul
  factorial using recursive function spalisetty06 12 4,232 Aug-25-2020, 03:16 PM
Last Post: spalisetty06
  minor mistake in code for factorial spalisetty06 2 1,954 Aug-22-2020, 05:00 PM
Last Post: spalisetty06
  Factorial Code is not working when the given number is very long integer Raj_Kumar 2 2,392 Mar-31-2020, 06:40 PM
Last Post: deanhystad
  Want to print each iteration of factorial program sbabu 10 4,696 Jan-09-2020, 07:25 AM
Last Post: perfringo
  Factorial sketch(python 3) KingArthur526 1 2,021 Sep-25-2019, 01:51 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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