Answer:
Explanation:
A Dutch programmer named Guido van Rossum made Python in 1991.This also means Python is slower than a compiled language like C, because it to avoid changing the language to make it better until they have a lot of things to change.
Python is an interpreted, high-level and general-purpose programming language. Created by This compact modularity has made it particularly popular as a means of a rough transcription from another programming language is called unpythonic. It has fewer syntactic exceptions and special cases than C or Pascal.
plz mark as brainliest
7.1.5 Codehs:
Write a program that gets a string containing a person's first, middle and last names, and then display their first, middle and last initials. For example, if the user enters John William Smith, the program should display J. W. S. [In python]
Answer:
first = input("First name: ")
middle = input("Middle name: ")
last = input("Last name: ")
print(first[0]+". "+middle[0]+". "+last[0]+".")
Explanation:
This line prompts user for first name
first = input("First name: ")
This line prompts user for middle name
middle = input("Middle name: ")
This line prompts user for last name
last = input("Last name: ")
This line prints the name initials
print(first[0]+". "+middle[0]+". "+last[0]+".")
Answer:
Translate ➡️ allows the user to change words from one language to another
Smart Lookup➡️allows user to find the definition of a word or a phrase.
Thesaurus ➡️ allows the user to find the synonyms and antonyms of a word.
Explanation:
I have been able to match each took to the tasks that they perform.
In Translate, users can easily change words into a different language. That means that words in English can be translated into French, Spanish, etc., and vice versa.
In Smart Lookup, users can actually find definitions of words or phrases. Smart Lookup can be found in Microsoft Word Office.
The Thesaurus is used to find the synonyms and antonyms of words.
These tools make learning very easy and enjoyable.
Floating point is basically binary scientific notation. So if you have a four byte float and a four byte integer, the float will have a greater range than the int. The float will also have slight anomalies. Play around with values like 0.3.
thank you for the free points.