3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

(⌒▽⌒)、٩( 'ω' )وこのような絵文字、いまでは🤗、😤があるので見かけなくなりました
「おじさん構文」の意味は、ガラケーで使われており、スマホに切り替わったタイミングでもこの絵文字を使い続けている人のことみたいです。
私は、自分の携帯を持つのが遅く、ちょうど自分の携帯=スマホからのスタートだったので、絵文字=🤗、😤でした。

今回は、この絵文字は組み合わせなのでpythonでオリジナル作れるのでは?と思い作ってやってみました

おじさん構文絵文字生成

python
import random

# 顔のパーツ
eyes = ["@", "O", "^", "-", "T", "o", "*", "X"]
mouths = ["_", "-", "~", "o", "ω", "Д", "", "з"]
cheeks = ["(", ")", "[", "]", "{", "}", "", ""]

# ランダム顔文字を生成する関数
def generate_face():
    left_cheek = random.choice(cheeks)
    right_cheek = random.choice(cheeks)
    eye_left = random.choice(eyes)
    eye_right = random.choice(eyes)
    mouth = random.choice(mouths)
    face = f"{left_cheek}{eye_left}{mouth}{eye_right}{right_cheek}"
    return face

# 複数の顔文字を生成
def generate_faces(number=10):
    print("ランダム顔絵文字ジェネレーター!\n")
    for _ in range(number):
        print(generate_face())

# 実行
generate_faces(10)

最後に

んっん、わからない
逆に、この絵文字の意味をAIに解読させた方が需要あったのかもと思いつつ、ここら辺にしておきます

「定時で帰りたい」をコンセプトに業務効率について投稿しています!
他の記事も見て見てください!

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?