Oct-27-2020, 02:28 PM
You have to say "temperature = temperature.replace(..."
So simple yet not working....
|
Oct-27-2020, 02:28 PM
You have to say "temperature = temperature.replace(..."
Oct-27-2020, 04:59 PM
(Oct-27-2020, 12:13 PM)jps2020 Wrote: I'm sorry to say it doesn't work for me, and I'm not sure why. Hello jps, can you try something like this: temperature = input("Insert temperature: ") new_str = temperature.replace('F', '') new_str = new_str.replace('C', '') new_str = new_str.replace('f', '') new_str = new_str.replace('c', '') print(new_str)
Oct-27-2020, 09:23 PM
(This post was last modified: Oct-27-2020, 09:23 PM by deanhystad.)
The str.replace() method is a liar. The name makes it sound like it replaces substrings in a string. IT DOES NOT!!! str.replace() creates a new string from the source string. The substrings are replaced in the new string.
This is why your code fails. If temperature == "32 F", temperature.replace("F", "") returns the string "32 ". However, the string temperature is still "32 F". If I call temperature.replace("f", "") it returns "32 F" because there were no "f"'s in temperature. This code works because the result string is saved and used as the source string in the next step. temperature = input("Insert temperature: ") new_str = temperature.replace('F', '') new_str = new_str.replace('C', '') new_str = new_str.replace('f', '') new_str = new_str.replace('c', '') print(new_str)I prefer not introducing new strings and would write it like this. temperature = input("Insert temperature: ") temperature = temperature.replace('F', '') temperature = temperature.replace('C', '') temperature = temperature.replace('f', '') temperature = temperature.replace('c', '')print(new_str)[/python] Of course you can also write it this way: temperature = input("Insert temperature: ") temperature = temperature.replace('F', '').replace('C', '').replace('f', '').replace('c', '')
Oct-27-2020, 09:31 PM
Another way, just for fun:
temperature = input("Insert temperature: ") for letter in 'FCfc': temperature = temperature.replace(letter, '') |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
Simple code not working properly | tmv | 2 | 457 |
Feb-28-2025, 09:27 PM Last Post: deanhystad |
|
Simple conditional not working as expected | return2sender | 8 | 2,326 |
Aug-27-2023, 10:39 PM Last Post: return2sender |
|
Why isn't this working. I've made it as simple as posible | gcryall_Forum | 3 | 3,156 |
Mar-10-2019, 03:07 PM Last Post: gcryall_Forum |