Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

faker, generates fake data for you

# faker, generates fake data for you
from faker import Faker
fake = Faker()
name=fake.name()
print(name)
address=fake.address()
print(address)
text=fake.text()
print(text)
Comment

PREVIOUS NEXT
Code Example
Python :: Python RegEx Searching for an occurrence of the pattern 
Python :: django on delete set default 
Python :: how to post data to foreign key in django rest framework 
Python :: python check if string or list 
Python :: numpy make 2d array 1d 
Python :: max function python 
Python :: how to check if a list is empty 
Python :: negative indexing in python 
Python :: python tableau 
Python :: convert excel to pdf python 
Python :: np.vectorize 
Python :: walrus operator python 3.8 
Python :: django fixtures. To loaddata 
Python :: import library to stop warnings in jupyter 
Python :: py virtual 
Python :: how to print smallest number in python 
Python :: pos taggging in nltk 
Python :: python list object attributes 
Python :: onedrive python upload 
Python :: python new line 
Python :: python conjugate 
Python :: python data type conversion 
Python :: discard python 
Python :: how to use a for loop in python 
Python :: if start and end point is same in range function python 
Python :: reverse a string in python 
Python :: merge sort of two list in python 
Python :: limpar idle python 
Python :: python remove (string) 
Python :: megre pandas in dictionary 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =