Skip to content

Instantly share code, notes, and snippets.

View Charmireddy's full-sized avatar

Ch.Charmi Reddy Charmireddy

View GitHub Profile
art = open("angelica.txt").read()
lines = art.split("\n")
# find lips: (V) mouth on the small face •Å(V)åö•
for line in lines:
if "•" in line and "(V)" in line:
face_line = line
break