So there're multiple answers possible thanks to Ben Grossmann and user19077881, let me summarize it here (I'm new so I can't upvote Ben Grossmann's answer):
row = df.query("t == 3").astype(object).squeeze()
row = df.loc[df["t"] == 3].astype(object).squeeze()
The order is important:
And if there are multiple rows matching the query then extract the wanted row by using iloc between astype and squeeze:
row = df.query("t == 3").astype(object).iloc[wanted_idx].squeeze()