Skip to content

Instantly share code, notes, and snippets.

@mouseos
Last active January 25, 2025 05:30
Show Gist options
  • Save mouseos/bce0de61414816d30329e7aa04ccf322 to your computer and use it in GitHub Desktop.
Save mouseos/bce0de61414816d30329e7aa04ccf322 to your computer and use it in GitHub Desktop.
獄中 = []
def 逮捕():
# 4人のロリコンを獄中に追加
for _ in range(4):
獄中.append("ロリコン")
def 点呼():
# 獄中のロリコンの人数分点呼
for count in range(1, len(獄中) + 1):
print(f"{count}", end=" ")
import 獄中
def 聞こえる(言葉):
return 言葉 == "ごめんなさい"
def 粛聖ロリ神レクイエム():
print("粛聖 ロリ神レクイエム☆")
def main():
触った = True
if 触った:
print("触ったら逮捕 (Ah)")
獄中.逮捕()
print("極 Chu ♡ de 点呼 (Uh)")
獄中.点呼()
言葉 = "ごめんなさーい"
print("("+言葉+")")
if not 聞こえる(言葉):
print("ハァ? ( ゚Д゚) ごめんなさいが聞こえなーい (え〜)")
粛聖ロリ神レクイエム()
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment