Pensare come un Informatico
Runestone in social media:
Follow @iRunestone
Help support us:
Table of Contents
Book Index
Scratch ActiveCode
Join a Study Group
Group Schedule
Schedule New Chapter
Manage Group
Instructor's Page
Progress Page
Edit Profile
Change Password
Register
Login
Navigation Help
Help for Instructors
About Runestone
Report A Problem
Fattoriale
¶
Run
Save
Load
def factorial(n): if n==0: return 1 return n*factorial(n-1) print(factorial(4))
(chrec_fact)
(chrec_fact_codelens)
Next Section - Conversione Binaria