Variables
What Are Value Variables?
p is Person
---
full_name := CONCAT(p.first_name, ' ', p.last_name)
p.display_name := full_nameSyntax
left_side := right_sideExamples
Storing a calculated value to reuse it
Cleaning up a string before assignment
Building a list incrementally
Using a variable across multiple assignments
Intermediate dictionary for a structured assignment
Naming Variables
Last updated
Was this helpful?
