xavicano

Untitled

Jul 1st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. cold = input('Is it cold Y/N? ')
  2. raining = input('Is it raining? Y/N ')
  3. if (cold =='Y') or (raining =='Y'):
  4.         daytime = input('Is it daytime? Y/N ')
  5.         if not(daytime == 'Y'):
  6.             print ('Wear your reflective weatherproof cycling jacket')
  7. print ('Have a nice cycle')
Add Comment
Please, Sign In to add comment