Skip to content

Config examples

Sven Rahn edited this page Jun 19, 2018 · 22 revisions

Just try them out and learn. But please read the wiki pages about the used commands first to understand what's going on. If you need help, contact me at my discord.

If you want to use a " quote in other quotes, you have to 'escape' it using a \ backslash: \"

OR

You can use triple quotes around a string and then you don't have to escape the inner quotes:

string = "A cool string with \"these\" cool quotes!"
string = """A cool string with "these" cool quotes!"""