Jinja data types
Integers: Whole numbers
{{- 1 -}}Floats: Decimal numbers
{{- 1.1 -}}Strings: Textual data
{{- "hello world" -}}Lists: Ordered collections
{{- ["hello", "world", 1, 2, 3] -}}Tuples: Immutable pairs
Dictionaries: Key-value pairs
Sets: Unique values
Booleans: True or false
NoneType: Null values
Last updated
Was this helpful?

