Strings (Python)

Strings

> Tutorial

The strings

Character strings are a type of value used to represent text.

A string is written between single or double quotes:

String operations

The + operator is the concatenation operator, which will "glue" two strings together:

Warning: in Python, you cannot directly concatenate a string and a number. You must convert the number to a string with str(): "life: " + str(me.life).

Many operations are available on strings, the main ones are:

Examples of use:

Greet your opponent

The enemy.name property returns the name of an entity. We will use it to greet our opponent on turn 1:

The me.say() method makes your leek say something, it costs 1 TP . For an enemy named Domingo, our leek will say: "Hi Domingo !". Feel free to personalize it, while staying polite!

❓ Quiz

What is the result of the code "10" + str(5) + "aa"?

"105aa" "15aa" "10aaaaaaaa" "15aaaaa"

What is the result of the code "eucalyptus"[4:7]?

"lyp" "euc" "ptus" "euca"

Full AI