We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2269904 commit 77c4444Copy full SHA for 77c4444
[6 kyu]Grouped by commas.py
@@ -0,0 +1,6 @@
1
+import re
2
+def group_by_commas(n):
3
+ return '{:,}'.format(n)
4
+
5
+print(group_by_commas(19234))
6
+print(group_by_commas(19255366477))
0 commit comments