10th European Film Awards
The 10th European Film Awards were presented on 7 December 1997 in Berlin, Germany.
10th European Film Awards | |
---|---|
Date | 7 December 1997 |
Site | Flughafen Tempelhof, Berlin, Germany |
Hosted by | Tania Bryer |
Organized by | European Film Academy |
Highlights | |
Best Film | The Full Monty |
Best Actor | Bob Hoskins |
Best Actress | Juliette Binoche |
Awards
Best Film
English title | Original title | Director(s) | Country |
---|---|---|---|
The Full Monty | Peter Cattaneo | United Kingdom | |
Captain Conan | Capitaine Conan | Bertrand Tavernier | France |
The Fifth Element | Le Cinquième Élément | Luc Besson | France |
The Perfect Circle | Savršeni krug | Ademir Kenović | Bosnia and Herzegovina |
The English Patient | Anthony Minghella | United States, United Kingdom | |
The Thief | Вор | Pavel Chukhrai | Russia |
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.
gollark: Idea: wrapping_add.
gollark: Unlike LyricLy's bad thing, which timed out.
gollark: See, it was too fast, it overflowed.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.