View difference between Paste ID: quTV7FDV and MsiMz36Z
SHOW: | | - or go back to the newest paste.
1
cold = input('Is it cold Y/N? ')
2
summer = input('Is it summer? Y/N ')
3
if (cold =='N') and (summer =='Y'):
4
        flu = input('Do you have a flu ? Y/N')
5
        if not(flu=='Y'):
6
            print ('Have a nice bath!!!')
7
        else:
8
          print ('You better wait for your health ')
9
else:
10
  print ('You better wait for better conditions!!')