Roundup Tracker - Issues

Message6379

Author When in trouble, go to the library
Recipients When in trouble, go to the library
Date 2019-03-08.11:14:00
Message-id <1552043640.3.0.408580240447.issue2551028@roundup.psfhosted.org>
In-reply-to
'''Um mögliche Fehlerquellen bei mach_n auszuschließen, wird die
Funktion print_n (s,n) von Downey, S.58 unverändert eingegeben.
Diese Funktion gibt einen String n-mal aus.'''

def print_n(s,n):
    if n <=0:
        return
    print s
    print_(s,n-1)


print_n(s,n)

message:Missing parentheses in call to 'print'. Did you mean print(s)?
type: syntax error
History
Date User Action Args
2019-03-08 11:14:00When in trouble, go to the librarysetmessageid: <1552043640.3.0.408580240447.issue2551028@roundup.psfhosted.org>
2019-03-08 11:14:00When in trouble, go to the librarysetrecipients: + When in trouble, go to the library
2019-03-08 11:14:00When in trouble, go to the librarylinkissue2551028 messages
2019-03-08 11:14:00When in trouble, go to the librarycreate