Python in Plain English

New Python content every day. Follow to join our 3.5M+ monthly readers.

Follow publication

One a Day One Liners with Python — Week 6

Jeremy Brown
Python in Plain English
3 min readFeb 5, 2023
Photo by Nick Fewings on Unsplash

Feb 11, 2023

from itertools import accumulate
from random import randint as rand

steps = 100000
walk = accumulate(
[[rand(-1, 1), rand(-1, 1)] for x in range(steps)],
lambda p, c: (p[0] + c[0], p[1] + c[1]),
initial=[0, 0]
)

Feb 10, 2023

The noise data saved to an image
from math import cos, sin
from random import randint

w = 512
h = 512
noise = [[cos(x*8/w) * sin(y*8/h) * randint(0, 255) for x in range(w)] for y in range(h)]

Feb 09, 2023

Photo by Trnava University on Unsplash
from random import choices

rolls = 10
match = 8
matches = 2
sides = 20
sims = 10000

prob = sum([
choices([i for i in range(sides)], k=rolls)
.count(match) >= matches for i in range(sims)
]) / sims

Feb 08, 2023

from random import choice
q = input('Ask the Magic Eight Ball for advice...\n')
print(choice(open('./data/text/eightball.txt').readlines()))

Feb 07, 2023

from math import cos
from random import uniform

celsius = [(1-cos(d / 60)) * 16 + uniform(-1.5, 1.5) for d in range(365)]

Feb 06, 2023

from random import randint, seed
from string import ascii_letters, digits

n = 64
seed(0)
chars = ascii_letters + digits
key = ''.join([chars[randint(0, len(chars)-1)] for _ in range(n)])

Feb 05, 2023

from functools import reduce
from math import exp

m = 15
k = m * 2
poisson = [((m**x) * exp(-m)) / reduce(lambda x, y: x*y, range(1, x+1)) for x in range(1, k)]

Published in Python in Plain English

New Python content every day. Follow to join our 3.5M+ monthly readers.

Written by Jeremy Brown

Software Engineer, originally from the U.S. and now living and working in Vienna, Austria. I write about Programming, Music, Machine Learning & NLP

No responses yet

Write a response