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

From Polyglot Club WIKI
Jump to navigation Jump to search
(Replaced content with "thumb 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. Films listed must be rated at least 7 on IMDb. If supernatural elements exist, they should be minimal and don't affect the plot. Remember that the...")
Tag: Replaced
Line 24: Line 24:


{{template:Films-about-Life}}
{{template:Films-about-Life}}
<div class="mw-collapsible mw-collapsed">
Table sorting script in Python:
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)
</div>


==Other Lessons==
==Other Lessons==

Revision as of 04:23, 8 January 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 the 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.

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.

There are some experts that reviewed films:

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

There is some information about copyright lengths.

There is an old trick if 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:

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