miron / NeonCore

Terminal based Cyberpunk Tabletop RPG with Nostr as database and openAI API compatible commands
3 stars 1 forks source link

use Templates for string replacement #62

Open miron opened 1 year ago

miron commented 1 year ago
from string import Template
text = Template(“Hello $choomba!”)
text.substitute(choomba=self.char_mngr.player.handle)