Assume is shuffle is quite good that it randomizes the card order.
We know that E = $ \sum_{X=1}^n X*P(X) $
We are already know that n=52 and that there are 52! ways to arrange the cards.
So probability that exactly 1 card is in correct position is $\frac{1}{52!} {52 \choose 1}*$(derangements of remaining cards)
This will be summed over all the 52 cases. This seems a bit complicated. Is there a simpler way?
Let $X_i$ be an indicator random variable that is $1$ if card $i$ being shuffled back to its original position, otherwise $0$.
We see $E[X_i] = 1/52$ since card $i$ has an equal chance of each of 52 positions where it could be permuted to. Another way to see this: there are 51! permutations of the cards with card $i$ shuffled to its original position and the rest may be permuted however, out of a total of 52! possible permutations.
The magic step: the quantity we are looking for is $E[X_1 + \cdots + X_{52}] = E[X_1] + \cdots + E[X_{52}] = 52 \times 1/52 = 1$ by linearity of expectation!
(This is effectively the same answer as by Gribouillis, just in the language of expectation instead of computing all cases explicitly)