format python number with commas
num = int(input())
print(f"{num:,}")
#Hope this helps:)
format python number with commas
num = int(input())
print(f"{num:,}")
#Hope this helps:)
how to print list letters without commas in python
# you're using Python 3, or appropriate Python 2.x version with from __future__ import print_function then:
data = [7, 7, 7, 7]
print(*data, sep='')
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us