Qu'est-ce que la charge nouvellement crée ?

Understanding 'New' Words and Their Creation

14/04/2009

Rating: 4.89 (7178 votes)

The Ever-Evolving Lexicon: How and Why We Create New Words

Language is not a static entity; it's a living, breathing organism that constantly adapts and expands. One of the most fascinating aspects of this evolution is the creation of new words, known as neologisms. These linguistic innovations are born out of necessity, driven by the emergence of new objects, concepts, realities, and ideas. From the rapid advancements in technology to shifts in societal norms, the need to articulate the unfamiliar fuels this continuous process of word-building. Linguists and lexicographers, the guardians of our dictionaries, play a crucial role in this by regularly updating these invaluable resources, incorporating these nascent terms into the official lexicon of a language.

Comment créer un nouveau dictionnaire ?
Comme la même clé ne peut pas être enregistrée dans le dictionnaire, si la même clé est spécifiée, elle est écrasée. Depuis Python 3.5, vous pouvez écrire comme {**d1, **d2}. Vous pouvez créer un nouveau dictionnaire en fusionnant deux dictionnaires, comme suit. Les dictionnaires originaux ne sont pas mis à jour.

The digital age, in particular, has been a fertile ground for neologisms. The information revolution, spanning over three decades, has introduced a deluge of new technologies and concepts, each requiring its own terminology. Think of terms like 'internet,' 'software,' 'download,' 'upload,' 'selfie,' 'hashtag,' and 'app' – words that were virtually non-existent a few decades ago but are now commonplace. This relentless pace of innovation ensures that the process of coining new words is more dynamic than ever.

Table

The Genesis of Neologisms: Why Do We Invent Words?

The primary driver behind word creation is the need to name something that previously lacked a specific designation. This can be anything from a groundbreaking scientific discovery to a new social trend, a piece of technology, or even a novel emotion. Consider the impact of the internet on our lives; it necessitated the creation of a whole new vocabulary to describe its functionalities, its culture, and its potential.

Here are some key reasons why new words are born:

  • New Inventions and Discoveries: When a new gadget, scientific principle, or medical breakthrough occurs, a name is needed. For example, the invention of the telephone led to words like 'telephone,' 'dial,' and 'receiver.'
  • Technological Advancements: As seen with the digital revolution, new technologies consistently introduce new terms. 'Smartphone,' 'cloud computing,' 'artificial intelligence,' and 'virtual reality' are all relatively recent additions to our vocabulary.
  • Cultural and Social Shifts: Changes in societal values, trends, and lifestyles also prompt new word creation. 'Cancel culture,' 'mansplaining,' 'woke,' and 'staycation' are examples of terms that reflect contemporary social dynamics.
  • Artistic and Creative Expression: Authors, poets, and musicians often invent words to achieve specific artistic effects, convey unique emotions, or create memorable phrases. This can range from playful portmanteaus to entirely new coinages.
  • Filling Lexical Gaps: Sometimes, existing words are insufficient to express a nuanced idea or concept. New words can fill these gaps, allowing for more precise communication.

The 'Newly' Coined: Understanding 'Nouvellement'

While the creation of new words is a fascinating linguistic phenomenon, the adverb 'nouvellement' (meaning 'newly' or 'recently') highlights the temporal aspect of this process. It signifies something that has happened or come into existence in the recent past. The provided French quotes illustrate the various contexts in which 'nouvellement' can be used, often in relation to news, change, or the introduction of something fresh.

Qu'est-ce que 'nouvellement' signifie?
⇒ fraîchement, récemment. Entreprise nouvellement créée. Immigrant nouvellement arrivé. Maison nouvellement acquise. infobulle def_sous_entree_in_TLF in_TLF in TLFi in Trésor de la langue française informatisé 400 nouvellement Cet article s'appuie sur certaines données du TLFi.

For instance, the quote from Jacques Amyot, "Ayant receu le royaume d'un peuple nouvellement amassé, qui ne luy contredisoit en rien..." uses 'nouvellement' to describe a recently formed or gathered kingdom. Similarly, Léon Zitrone's announcement of a "nouveau journal télévisé" in 1962 signifies a recent update or a fresh iteration of a broadcast. These examples underscore how 'nouvellement' marks the recency of an event, state, or creation.

The Role of Dictionaries and Lexicography

Dictionaries are not merely passive repositories of words; they are active participants in the life of a language. Lexicographers, the compilers of dictionaries, meticulously track the emergence and adoption of new words. This involves:

  • Corpus Analysis: Examining vast collections of text and speech (corpora) to identify patterns of word usage, including the appearance of new terms.
  • Etymological Research: Tracing the origin and development of words, understanding how they are formed and their semantic shifts over time.
  • Usage Monitoring: Observing how new words are used in different contexts – in literature, media, academia, and everyday conversation – to gauge their acceptance and permanence.
  • Editorial Review: Deciding which new words meet the criteria for inclusion in a dictionary, based on factors like frequency of use, distinctiveness, and semantic contribution.

The collaboration between linguistic research institutions, such as the Centre national de la recherche scientifique (CNRS) and the Trésor de la langue française, with specific centres like the Centre de recherche interuniversitaire sur le français en usage au Québec (CRIFUQ), is vital for this ongoing process. These collaborations ensure that dictionaries remain comprehensive and reflective of contemporary language use.

Creating 'Dictionaries' in Programming: A Different Kind of New

While we've been discussing linguistic dictionaries, the term 'dictionary' also holds significant meaning in the realm of computer programming, particularly in languages like Python. In Python, a dictionary is a fundamental data structure used to store data values in key:value pairs. These are not words in the linguistic sense, but rather collections of data that programmers create and manipulate.

Here's how you can create dictionaries in Python:

1. Using Curly Braces `{}`

This is the most common and straightforward way to create a dictionary. You define key-value pairs enclosed in curly braces.

Qu'est-ce que ça veut dire nouvellement ?
Nouvellement indique qu'une action est récente, qu'elle a eu lieu il y a peu de temps, qui vient de se produire. Exemple : Je suis nouvellement grand-mère : mon premier petit-fils est né hier ! En vidéo : L'astuce du jour par le champion de France d'orthographe.
# Defining a dictionary with key-value pairs d = { 'k1': 1, 'k2': 2, 'k3': 3 } print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 3} # If a key is repeated, the last value overwrites the previous ones d = { 'k1': 1, 'k2': 2, 'k3': 3, 'k3': 300 } print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 300} 

2. Merging Dictionaries

Python 3.5 and later versions allow for easy merging of dictionaries using the `**` operator.

d1 = { 'k1': 1, 'k2': 2 } d2 = { 'k3': 3, 'k4': 4 } # Merging d1 and d2 into a new dictionary d = { d1, d2 } print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 3, 'k4': 4} # Original dictionaries remain unchanged print(d1) # Output: {'k1': 1, 'k2': 2} print(d2) # Output: {'k3': 3, 'k4': 4} # Merging with additional key-value pairs print({ d1, d2, 'k5': 5 }) # Output: {'k1': 1, 'k2': 2, 'k3': 3, 'k4': 4, 'k5': 5} # Merging multiple dictionaries d3 = { 'k5': 5, 'k6': 6 } print({ d1, d2, **d3 }) # Output: {'k1': 1, 'k2': 2, 'k3': 3, 'k4': 4, 'k5': 5, 'k6': 6} # Handling duplicate keys during merging (last value wins) d4 = { 'k1': 100, 'k3': 300 } print({ d1, d2, d3, d4, 'k5': 500 }) # Output: {'k1': 100, 'k2': 2, 'k3': 300, 'k4': 4, 'k5': 500, 'k6': 6} 

3. Using the `dict()` Constructor

The `dict()` constructor offers several ways to create dictionaries:

  • Using Keyword Arguments:
  • d = dict(k1=1, k2=2, k3=3) print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 3} # Note: Keys must be valid variable names. Repeating keys raises a SyntaxError. 
  • With a List of Key-Value Pairs:
  • d = dict([('k1', 1), ('k2', 2), ('k3', 3)]) print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 3} # Can also use lists within lists or tuples within lists, etc. d = dict([['k1', 1], ['k2', 2], ['k3', 3]]) print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 3} # Duplicate keys are handled by taking the last value d = dict([('k1', 1), ('k2', 2), ('k3', 3), ('k3', 300)]) print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 300} 
  • With a List of Keys and a List of Values (using `zip()`):
  • keys = ['k1', 'k2', 'k3'] values = [1, 2, 3] d = dict(zip(keys, values)) print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 3} # Duplicate keys in 'keys' would be handled by taking the last value. 
  • From Another Dictionary:
  • d_other = {'k10': 10, 'k100': 100} d = dict(d_other) print(d) # Output: {'k10': 10, 'k100': 100} # Using ** with dict() to merge (careful with duplicate keys) d1 = { 'k1': 1, 'k2': 2 } d2 = { 'k1': 100, 'k3': 3 } # This will raise a TypeError: dict() got multiple values for keyword argument 'k1' # d = dict(d1, d2) # The {d1, d2} syntax is preferred for merging as it handles duplicates gracefully. 

4. Using Dictionary Comprehensions

Similar to list comprehensions, dictionary comprehensions offer a concise way to create dictionaries.

# Creating a dictionary where keys are strings and values are their lengths l = ['Alice', 'Bob', 'Charlie'] d = { s: len(s) for s in l } print(d) # Output: {'Alice': 5, 'Bob': 3, 'Charlie': 7} # Using zip() with dictionary comprehension keys = ['k1', 'k2', 'k3'] values = [1, 2, 3] d = { k: v for k, v in zip(keys, values) } print(d) # Output: {'k1': 1, 'k2': 2, 'k3': 3} # With conditional logic d = { k: v for k, v in zip(keys, values) if v % 2 == 1 } print(d) # Output: {'k1': 1, 'k3': 3} # Filtering an existing dictionary d_original = {'apple': 1, 'banana': 10, 'orange': 100} # Get items where value is even dc_even = { k: v for k, v in d_original.items() if v % 2 == 0 } print(dc_even) # Output: {'banana': 10, 'orange': 100} # Get items where key ends with 'e' dc_ends_e = { k: v for k, v in d_original.items() if k.endswith('e') } print(dc_ends_e) # Output: {'apple': 1, 'orange': 100} 

The 'Noums' Phenomenon: A Pedagogical Innovation

The provided text also touches upon a specific educational innovation called 'Les Noums'. These are described as a reimagining of the Cuisenaire rods, a classic pedagogical tool for teaching mathematics. Created by Rémi Brissiaud in collaboration with DragonBox and Editions Retz, the Noums aim to engage young children in learning numbers and arithmetic through a blend of physical manipulatives (silicone figures) and digital applications.

Où puis-je trouver des mots et sens nouveaux ?
Retrouvez tous ces mots et sens nouveaux ainsi que des centaines d’articles actualisés dans la toute nouvelle édition du Petit Robert de la langue française (en version imprimée et numérique), mais aussi sur Dico en ligne Le Robert, le dictionnaire gratuit pour tous.

The concept behind the Noums is to make abstract mathematical concepts more concrete and interactive. By personifying the numerical values of the Cuisenaire rods, and allowing children to manipulate them digitally (moving, stacking, 'X-raying' them), the aim is to foster a deeper understanding and a more enjoyable learning experience. The integration of games and challenges, such as defeating a 'Nordic monster' by mastering calculation, further enhances engagement.

While the Noums represent a new approach to math education, the discussion also highlights the importance of quality control in educational products. Potential issues with the precision of the silicone rods and the accuracy of their visual representation (like the 'eye' on the number 5 rod) were noted, underscoring that even innovative tools require rigorous development and testing.

Conclusion: The Dynamic Nature of Language and Learning

The creation of new words and the development of innovative educational tools are testaments to human ingenuity and our drive to understand and communicate. Whether it's coining a term for a new technology or devising a novel way to teach mathematics, the process is fueled by a desire for clarity, efficiency, and progress. Language, like education, is a constantly evolving field, with new terms and methods emerging to meet the challenges and opportunities of our ever-changing world. The ongoing dialogue between linguists, educators, and creators ensures that our ability to express ourselves and to learn continues to grow and adapt.

Frequently Asked Questions

What is a neologism?
A neologism is a newly coined word or expression, or an existing word used in a new sense.
Why are new words created?
New words are created to name new inventions, technologies, concepts, or social phenomena that lack existing terminology, or to express nuances that existing words cannot capture.
Who decides which new words go into the dictionary?
Linguists and lexicographers track word usage and decide which new words have become established enough in common usage to be included in official dictionaries.
How are dictionaries updated?
Dictionaries are updated by analyzing large text and speech corpora, researching word origins, monitoring usage, and making editorial decisions about new inclusions.
What is the difference between a linguistic dictionary and a programming dictionary?
A linguistic dictionary is a reference book of words and their meanings. A programming dictionary (like in Python) is a data structure that stores key-value pairs.

If you want to read more articles similar to Understanding 'New' Words and Their Creation, you can visit the Automotive category.

Go up