Computer Science, asked by CrashOfCars, 6 hours ago

Write a python program to find whether a chemical solution with given pH 9 is acidic or basic.

Answers

Answered by asmittbhardwajp9kstg
3

pH=int(input("Enter the pH value: "))

if pH <= 6:

   print("Solution is acidic")

if pH >= 8:

   print("Solution is basic")

if pH == 7:

   print("Solution is neutral")

Similar questions