Noticing major flaws on this site.
i keep noticing the wording of problems has been REwritten to not match the answers to the code challenges. This is a HUGE issue as to no one will pass the certifications unless they look up old answers. PROOF: ---> https://www.sololearn.com/learning/1157/4509/11483/1 Look at the purities being asked for in the question. If you write the code in reference to those it will be concluded as INCORRECT. I had to look up someones old answer with purities NOT matching the question to pass the code challenge ---> PASSING CODE BELOW: purity = float(input()) #your code goes here if purity >= 99.9: print("24K") elif purity >= 91.7 and purity < 99.9: print("22K") elif purity >= 87.5 and purity < 91.7: print("21K") elif purity >= 83.3 and purity < 87.5: print("20K") elif purity >= 75.0 and purity < 83.3: print("18K")