This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |