Untitled

mail@pastecode.io avatar
unknown
plain_text
7 months ago
451 B
1
Indexable
Never

def print_pesel(pesel):
    pesel2 = 

    # Use a breakpoint in the code line below to debug your script.
    print(f'Pesel: {pesel2}')  # Press Ctrl+F8 to toggle the breakpoint.
#****************************************
#  nazwa funkcji: print_pesel
#  opis funkcji: Pokazuje pesel
#  parametry: pesel
#  zwracany typ i opis: zwraca pesel

#****************************************
if __name__ == '__main__':
    print_pesel("")

Leave a Comment