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
Conversione Binaria
ΒΆ
Run
Save
Load
def binary(n): if n==0: return '' return binary(n//2)+str(n%2) print(binary(17))
(chrec_bin)
(chrec_bin_codelens)
Next Section - Coefficiente Binomiale