Sep-29-2024, 11:11 AM
Dear All
I have run into an anomaly. This snippet of code works
Here is the whole file
round and format, both round up
I have run into an anomaly. This snippet of code works
original_string = "Hello, World!" extract = original_string[7:12] # Extracts "World" print(extract) # Output: WorldWhen I expand the code to do a little more, the above code works, but the second occurrence of [2:2] does not
Here is the whole file
original_string = "Hello, World!" extract = original_string[7:12] # Extracts "World" print(extract) # Output: World total = float(input("Enter total bill: ")) # Enter 173.59 print("Thank you") people = int(input("Enter the number of people: ")) # Enter 9 each = str(total/people) print("String =", each) # output: String = 19.287777777777777 extract2 = each[2:2] print("[", extract2, "]") # output: [ ]The purpose is to extract the first 2 decimal places and not to round up. I want to preserve the first 2 decimal places.
round and format, both round up
print("Each person will pay", round(total/people, 2)) # output 19.29 print("Each person will pay", format(total/people, '.2f')) # output 19.29Any help appreciated