Advertisement
gwiktor

Untitled

Apr 5th, 2020
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. available_cheese = "plesniowy"
  2. if available_cheese == "edam":
  3.   print("Kupuję edam")
  4. elif available_cheese != "edam":
  5.   if available_cheese == "brie":
  6.     print("Kupuję brie")
  7.   else:
  8.     print("Kupuję goudę")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement