Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. emojixpress = [2.26, 19.1, 25.6, 233.0, 15.2, 22.7, 64.6, 87.5, 6.81, 6.0]
  2.  
  3. # total of all emojis in millions
  4.  
  5. emojixpress_total = 1720
  6.  
  7. print("Emoji share:")
  8. for count in emojixpress:
  9. part = count / emojixpress_total
  10. print("{:.1%}".format(part))
  11. print()
  12. print("Total emojis: 1.72 billion")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement