Skip to content

Instantly share code, notes, and snippets.

@fuwiak
Created May 25, 2020 20:38
Show Gist options
  • Save fuwiak/ad73f015a47614b20b89cfa2fe460623 to your computer and use it in GitHub Desktop.
Save fuwiak/ad73f015a47614b20b89cfa2fe460623 to your computer and use it in GitHub Desktop.
def wartosc_bezwgledna(x):
if x>=0:
return x
else:
return -x
wartosc_bezwgledna(8)
wartosc_bezwgledna(-6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment