Roundup Tracker - Issues

Message6394

Author When in trouble, go to the library
Recipients When in trouble, go to the library
Date 2019-03-15.10:06:32
Message-id <1552644392.38.0.420057785284.issue2551028@roundup.psfhosted.org>
In-reply-to
ADD MISSING n IN print_(s,n-1)

def print_n(s,n):
    if n <=0:
        return
    print (s)
    print_n(s,n-1)
    
s='beliebiger_string' #Platzhalter für die Definition von s

print_n(s,5)

RUN MODULE

 RESTART: C:\Users\Henrike
Schwenn\Roaming\Programs\Python\Python36\eigene Funktionen\rekursive
Funktionen\Test print_n(s,n) - Downey S. 58.py 
beliebiger_string
beliebiger_string
beliebiger_string
beliebiger_string
beliebiger_string
>>>

IT'S WORKING! :)
History
Date User Action Args
2019-03-15 10:06:32When in trouble, go to the librarysetmessageid: <1552644392.38.0.420057785284.issue2551028@roundup.psfhosted.org>
2019-03-15 10:06:32When in trouble, go to the librarysetrecipients: + When in trouble, go to the library
2019-03-15 10:06:32When in trouble, go to the librarylinkissue2551028 messages
2019-03-15 10:06:32When in trouble, go to the librarycreate