Skip to content

Instantly share code, notes, and snippets.

@ShaneTsui
Last active December 16, 2019 00:51
Show Gist options
  • Select an option

  • Save ShaneTsui/4075bad4e32daf74f48dd62d2e3e8c26 to your computer and use it in GitHub Desktop.

Select an option

Save ShaneTsui/4075bad4e32daf74f48dd62d2e3e8c26 to your computer and use it in GitHub Desktop.
[Pythonic] #python
# Get the most common letter
text = text.lower()
return max(string.ascii_lowercase, key=text.count)
# 1. 取字母
import string
string.ascii_lowercase
string.ascii_uppercase
string.ascii_letters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment