Advertisement
Sa1nt_Veronika

Untitled

Nov 24th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 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. # количество всех эмодзи в миллионах
  4. emojixpress_total = 1720
  5.  
  6. print("Доли эмодзи:")
  7. for count in emojixpress:
  8. part = count / emojixpress_total
  9. print("{:.1%}".format(part))
  10. print()
  11. print("Всего эмодзи: 1.72 млрд")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement