Difference between revisions of "Language/Multiple-languages/Culture/Films-about-Life"

From Polyglot Club WIKI
Jump to navigation Jump to search
m (Grammar changes, made readability better)
 
Line 2: Line 2:
Greetings everyone,
Greetings everyone,


Have you ever found yourself pondering what life was like in a different place or time? If so, you may be interested in this list of highly acclaimed films that depict various aspects of life, especially those that reveal conflicts in the society.
Have you ever found yourself pondering what life was like in a different place or time? If so, you may be interested in this list of highly acclaimed films that depict various aspects of life, especially those that reveal conflicts in society.


Films listed must be rated at least 7 on IMDb. If supernatural elements exist, they should be minimal and don't affect the plot.
Films listed must be rated at least 7 on IMDb. If supernatural elements exist, they should be minimal and not affect the plot.


Remember that they are artworks and deviate from the reality more or less. For real characters and events, the listed films should not exaggerate to an extent that affects the audience's judgement towards the characters and events.
Keep in mind that these are artworks and deviate from reality, more or less. For real characters and events, the films listed should not exaggerate to an extent that affects the audience's judgement of the characters and events.


There are some experts that reviewed films:
Here are some experts who have reviewed these films:


* Expert Reviews https://www.youtube.com/playlist?list=PLZ2lDrDpOLrusAYQFq2yVHf-HDhvtUsnp
* Expert Reviews https://www.youtube.com/playlist?list=PLZ2lDrDpOLrusAYQFq2yVHf-HDhvtUsnp
Line 15: Line 15:
* The Breakdown https://www.youtube.com/playlist?list=PL0hKMB1-xkc8bPJ_N9BoGNnPBOFG1ZSZf
* The Breakdown https://www.youtube.com/playlist?list=PL0hKMB1-xkc8bPJ_N9BoGNnPBOFG1ZSZf


Some events in films are symbolic and not realistic, like the “Russian roulette” in The Deer Hunter.
Some events in these films are symbolic and not realistic, like the “Russian roulette” in The Deer Hunter.


There is some information about [https://en.wikipedia.org/wiki/List_of_countries%27_copyright_lengths copyright lengths].
Here one can find some information about [https://en.wikipedia.org/wiki/List_of_countries%27_copyright_lengths copyright lengths].


There is an old trick if images are not displayed: click on “Edit source”, then click on “Show preview”.
There is also an old trick in case images are not displayed: click on “Edit source”, then click on “Show preview”.


In progress
In progress

Latest revision as of 17:13, 13 February 2024

Films-about-life-polyglotclub-wiki.png

Greetings everyone,

Have you ever found yourself pondering what life was like in a different place or time? If so, you may be interested in this list of highly acclaimed films that depict various aspects of life, especially those that reveal conflicts in society.

Films listed must be rated at least 7 on IMDb. If supernatural elements exist, they should be minimal and not affect the plot.

Keep in mind that these are artworks and deviate from reality, more or less. For real characters and events, the films listed should not exaggerate to an extent that affects the audience's judgement of the characters and events.

Here are some experts who have reviewed these films:

Some events in these films are symbolic and not realistic, like the “Russian roulette” in The Deer Hunter.

Here one can find some information about copyright lengths.

There is also an old trick in case images are not displayed: click on “Edit source”, then click on “Show preview”.

In progress

main page
1910s 1920s 1930s 1940s
1950s 1960s 1970s 1980s 1990s
2000s 2010s 2020s

Table sorting script in Python, starting from the first '|-', ending with the last '\n' before '|}':

from pathlib import Path

llls_entry = [[], [], [], [], [], [], [], [], [], []]

text_path = Path('a.txt') s_text = text_path.read_text() lls_entry = s_text.removeprefix('|-').split('|-')

for s_entry in lls_entry: a,s_year,c,s_title,e,f = s_entry.split('|') s_full_title = s_title if '\n' in s_title: s_title = s_title.split('\n')[-2].replace("", ) llls_entry[int(s_year[-2])].append([s_title,a,s_year,c,s_full_title,e,f]) for lls_entry in llls_entry: lls_entry.sort()

s_sorted_text = for lls_entry in llls_entry: for ls_entry in lls_entry: s_title,a,s_year,c,s_full_title,e,f = ls_entry s_sorted_text += '|-' + a + '|' + s_year + '|' + c + '|' + s_full_title + '|' + e + '|' + f

sorted_text_path = Path('b.txt') sorted_text_path.write_text(s_sorted_text)

Other Lessons[edit | edit source]