from faker import Faker # import 하기
faker = Faker() # 인스턴스 생성하기 (택1)
faker = Faker('ko_KR')
# 이름
print(faker.name())
print(faker.first_name())
print(faker.last_name())
# 글 관련
print(faker.word())
print(faker.sentence()) # 제목
print(faker.text()) # 본문
# 기타
print(faker.password())
print(faker.country())
print(faker.city())