Nierówne wcięcia:
#!/usr/bin/env python # - coding: utf-8
def f un (x , y ) : a=x*y b=y-x return a*b
print fun (3,4) print fun(7,1)
wygenerują błąd przy uruchamianiu programu:
File "wciecia2.py" |
, linę 6 |
b=y - x | |
IndentationError: |
unexpected indent |
Krzysztof Katarzyński,'