python에서 숫자 또는 문자열을 뽑아 왔는데 화폐 형식( 100,000,000 ) 이거나 숫자, 문자열을 화폐 형식으로 변환할 때

 

1. 화폐 형식 -> 숫자 or string

# delete thousand sperator
x = '100,000,000'
x = x.replace(',' , '')

 

2. int or float or string -> 화폐 형식

# insert thousands seperator
# if string, convert to int or float before insert thousands seperator
x = 1000000
x= f'{x:,}'

 

f-string이 참 편리하긴 하네요. 굿

+ Recent posts