from faker import Faker
from random import randint, choice
f = Faker()
payment_methods = ['paypal', 'bitcoin']
for _ in range(20):
money = randint(1, 100) * 0.99
pyment_method = choice(payment_methods)
user_email = "*****" + f.email()[6:]
print(f'{money}$ --- {user_email} --- {pyment_method}')
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter