Switzerland in the Eurovision Song Contest 1991
Switzerland competed at the Eurovision Song Contest 1991, held in Rome, Italy. The Swiss entry was Sandra Simó with the Italian song "Canzone per te" (A song for you), composed by Renato Mascetti.
Eurovision Song Contest 1991 | ||||
---|---|---|---|---|
Country | ||||
National selection | ||||
Selection process | National Final | |||
Selection date(s) | 23 February 1991 | |||
Selected entrant | Sandra Simó | |||
Selected song | "Canzone per te" | |||
Finals performance | ||||
Final result | 5th, 118 points | |||
Switzerland in the Eurovision Song Contest | ||||
|
Before Eurovision
National final
The final was held on 23 February 1991 at the Casino du Rivage in Vevey, hosted by Lolita Morena. The winner was decided by the votes of 3 regional juries, a press jury and an expert jury.
Final – 23 February 1991 | |||||||||
---|---|---|---|---|---|---|---|---|---|
Draw | Artist | Song | Regional Juries | Press Jury |
Expert Jury |
Total | Place | ||
DRS | TSR | TSI | |||||||
1 | Marco, Daria & Mattia Zappa | "La nave va" | 4 | 7 | 2 | 1 | 8 | 22 | 5 |
2 | Christine Nachbauer | "Segel im Wind" | 2 | 2 | 4 | 3 | 2 | 13 | 8 |
3 | Claude Lander | "Laissez-le vivre" | 1 | 3 | 1 | 5 | 1 | 11 | 9 |
4 | R.C.O. | "Ruhelos" | 6 | 4 | 5 | 2 | 3 | 20 | 6 |
5 | Daniela Simons | "Come finirà?" | 8 | 8 | 8 | 7 | 7 | 38 | 2 |
6 | Suisse Home | "Home Suisse Home" | 3 | 1 | 3 | 4 | 4 | 15 | 7 |
7 | Sandra Simó | "Canzone per te" | 10 | 10 | 10 | 10 | 10 | 50 | 1 |
8 | Chris Lorens | "Ein ganzes Leben lang" | 7 | 6 | 7 | 8 | 6 | 34 | 3 |
9 | Carol Rich | "Donner la main" | 5 | 5 | 6 | 6 | 5 | 27 | 4 |
At Eurovision
Simó performed 5th on the night of the contest, following Greece and preceding Austria. At the close of the voting the song had received 118 points, placing 5th of 22.
The Swiss conductor at the contest was Flaviano Cuffari.
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.