https://leetcode.com/problems/percentage-of-letter-in-string/


Success


```python
class Solution:
    def percentageLetter(self, s: str, letter: str) -> int:
        return int((s.count(letter) / len(s)) * 100)
```
