Solved! Go to Solution.
import arcpy
from arcpy import env
arcpy.CreatePersonalGDB_management("C:/output", "pGDB.mdb", "9.2")
You left off the quotes and if you're using the Create File Geodatabase command, the geodatabase should have the suffix "gdb".
arcpy.CreateFileGDB_management ("C:/Pru", "Dad.gdb", "9.3")