Flow_17db3yp
The process instance completed successfully.
**Paris**
Country: {{paris_country}}
Highlights: {{paris_highlights}}
Population: {{paris_population}}
**Eiffel Tower**
Country: {{eiffel_tower_country}}
Highlights: {{eiffel_tower_highlights}}
Latitude: {{eiffel_tower_latitude}}
Longitude: {{eiffel_tower_longitude}}
**Cape Town**
Country: {{cape_town_country}}
Highlights: {{cape_town_highlights}}
**Kyoto**
Country: {{kyoto_country}}
Highlights: {{kyoto_highlights}}
Elevation: {{kyoto_elevation}}
**Rome**
Country: {{rome_country}}
Highlights: {{rome_highlights}}
Flow_1yjhonj
Flow_17db3yp
Flow_12pkbxb
DataStoreReference_0wrwvrh
travel_destinations = {
"Paris" : {
"country" : "France",
"highlights": "Known for iconic landmarks like the Eiffel Tower and the Louvre Museum.",
"Population" : "2.1 million"
},
"Eiffel Tower" : {
"country" : "France",
"highlights": "The Eiffel Tower is a landmark in Paris.",
"latitude" : "48.8584° N",
"longitude" : "2.2945° E"
},
"Cape Town" : {
"country" : "South Africa",
"highlights": "Offers stunning landscapes, diverse wildlife, and vibrant cultural experiences."
},
"Kyoto" : {
"country" : "Japan",
"highlights": "Renowned for its beautiful temples, traditional tea houses, and serene gardens.",
"elevation" :"971m"
},
"Rome" : {
"country" : "Italy",
"highlights": "Home to ancient ruins such as the Colosseum and the Roman Forum."
}
}
Flow_12pkbxb
Flow_1yjhonj
DataStoreReference_0wrwvrh
Property_030pryn
paris_country = travel_destinations("Paris", "country")
paris_highlights = travel_destinations("Paris", "highlights")
paris_population = travel_destinations("Paris", "Population")
eiffel_tower_country = travel_destinations("Eiffel Tower", "country")
eiffel_tower_highlights = travel_destinations("Eiffel Tower", "highlights")
eiffel_tower_latitude = travel_destinations("Eiffel Tower", "latitude")
eiffel_tower_longitude = travel_destinations("Eiffel Tower", "longitude")
cape_town_country = travel_destinations("Cape Town", "country")
cape_town_highlights = travel_destinations("Cape Town", "highlights")
kyoto_country = travel_destinations("Kyoto", "country")
kyoto_highlights = travel_destinations("Kyoto", "highlights")
kyoto_elevation = travel_destinations("Kyoto", "elevation")
rome_country = travel_destinations("Rome", "country")
rome_highlights = travel_destinations("Rome", "highlights")