I am querying a single value from my data frame which seems to be \'dtype: object\'. I simply want to print the value as it is with out printing the index or other information a
As mentioned in my comment, using [1] should work afterwards, to pull the variable you're looking for.
t = df[df['Host'] == 'a']['Port'][1]