Answer:
COUNT
Explanation:
Hope this helps! Plz mark brainliest!
Answer:
c) Starting with the biggest function and then moving to smaller ones
Explanation:
This design is a breakdown of a structure to determine the text functionality for small parts. The system analyzes the built-in top-down style, which defines and does not define some first-level components, often referred to as an unstable layout.
so correct answer is c) Starting with the biggest function and then moving to smaller ones
Answer:
1. Hard copy
Explanation:
It´s on an app so its a hard copy.
Answer:
import numpy as np
word = input("Enter a word: ")
acc = []
with open("Downloads/record-collection.txt", "r") as file:
lines = file.readlines()
for line in lines:
if word in line:
line = line.strip()
acc.append(int(line[0]))
if np.mean(acc) >= 2:
print(f"The word {word} is a positive word")
print(f"{word} appeared {len(acc)} times")
print(f"the review of the word {word} is {round(np.mean(acc), 2)}")
else:
print(f"the word {word} is a negative word with review\
{round(np.mean(acc), 2)}")
Explanation:
The python program gets the text from the review file, using the user input word to get the definition of reviews based on the word, whether positive or negative.
The program uses the 'with' keyword to open the file and created the acc variable to hold the reviews gotten. The mean of the acc is calculated with the numpy mean method and if the mean is equal to or greater than 2 it is a positive word, else negative.
Answer:
I would say D hope this helps