Question: i am having issue with this here is my code import sys isCold= sys.argv[1] == 'True' isRainy= sys.argv[2] == 'True' # Your code goes here
i am having issue with this here is my code import sys isCold= sys.argv[1] == 'True' isRainy= sys.argv[2] == 'True' # Your code goes here #cold or warm and rainy or dry if isCold: print ("cold and") else: print ("warm and") if isRainy: print("rainy") else: print ("dry") and it prints cold and rainy but i get an error :Program Failed for Input: True True
Your output was incorrect. Try again
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
