hello good night, could you help me to see what is wrong with my code, two errors appear at the bottom in red:
![In [47]: file_contents-open(color-blanco.png) def calculate_frequencies (file_contents): # Here is a list of punctuations a](http://img.homeworklib.com/questions/da5a1ca0-bcd9-11ea-b482-37f464edaaee.png?x-oss-process=image/resize,w_560)
![In [43]: # Display your wordcloud image myimage = calculate_frequencies (file_contents) plt.imshow(myimage, interpolation =](http://img.homeworklib.com/questions/dad14690-bcd9-11ea-a618-07679e47a418.png?x-oss-process=image/resize,w_560)
the variable file_contents does not store the contents of the
file it opens. It is instead storing the file pointer.
You are passing the file pointer to the function
calculate_frequencies.
Then inside the function, split method is being called on it, which
is throwing an error as split method does not exist for file
pointer.
You need to pass the string contents instead.
replace the line
file_contents=open("color_blanco.png")
by
f=open("color_blanco.png")
file_contents=f.read()
![[ ]: f-open(color_blanco.png) file_contents=f.read](http://img.homeworklib.com/questions/db82d000-bcd9-11ea-9b92-53a6822cf8dd.png?x-oss-process=image/resize,w_560)
hello good night, could you help me to see what is wrong with my code, two...
Hello I need help turning my code into a GUI applicaiton please. What I have for code and the requirements are below. Please please help, I will be so greateful. This is my last assignment of my school and I'm just so burnt out mentally that I don't know where to start and my teacher is always to busy to help. Thank you so so so much! -----Code------ private void CalculateSC(ActionEvent event) { if(amount < 10){ chargeAmount = 1; }else...
Here is my code for minesweeper in python and it has something
wrong. Could you please help me to fix it?
import tkinter as tk
import random
class Minesweeper:
def __init__(self):
self.main = tk.Tk()
self.main.title("mine sweeper")
self.define_widgets()
self.mines = random.sample( [(i,j) for i in range(25) for j in
range(50) ],self.CustomizeNumberOfMines())
print(self.mines)
self.main.mainloop()
self.CustomizeNumberOfMines()
def define_widgets(self):
""" Define a canvas object, populate it with squares and
possible texts """
self.canvas = tk.Canvas(self.main, width = 1002, height=502,
bg="#f0f0f0")
self.canvas.grid(row=0, column=0)
self.boxes =...
can this code be provided?
Project #3
Introduction
As you wrap up with JavaScript, let's put together everything
you've learned to make the classic game "Hangman" in a
webpage.
If you are unfamiliar with the rules of Hangman, the game
works like this:
A gallows is drawn on a surface, and Player 1 chooses a word
that player 2 must guess.
Empty dashes for each letter in the word are drawn next to the
gallows (so a 7-letter word means...
Can you help me rearrange my code by incorporating switch I'm not really sure how to do it and it makes the code look cleaner. Can you help me do it but still give the same output? Also kindly add an in-line comment on what changes and rearrangement you've done so I can understand what's going on. import java.util.ArrayList; import java.util.Scanner; public class Bank { /** * Add and read bank information to the user. * @param arg A string,...
Can you help me rearrange my code to make it look cleaner but still give the same output? Also kindly add an in-line comment on what changes and rearrangement you've done so I can understand what's going on. import java.util.ArrayList; import java.util.Scanner; public class Bank { /** * Add and read bank information to the user. * @param arg A string, double and int array containing * the command line arguments. * @exception Any exception * @return an arraylsit of...
VERY URGENT*** THANK YOU IN ADVANCE: THIS IS THE CODE I HAVE GOTTEN SO FAR: PYTHON This is a code that is supposed to help someone study/ practice for jeopardy. The two functions described below are required for this assignment. You may add other functions that you think are appropriate: menu() This function, which displays all the user options to the screen, prompt the user for their choice and returns their choice. This function will verify user input and ALWAYS...
so i have my c++ code and ive been working on this for hours
but i cant get it to run im not allowed to use arrays. im not sure
how to fix it thank you for the help
our job is to write a menu driven program that can convert to display Morse Code ere is the menu the program should display Menu Alphabet Initials N-Numbers - Punctuations S = User Sentence Q- Quit Enter command the user chooses...
Hello, this is my code. moest of the things works but when select the price, i just dont get my total. can someone help me out . thank you My queshion is also here The page will simulate the site for a Chicago-based small bus line that travels to St Louis, Milwaukee, and Detroit. Here are the requirements: The home page (i.e. the main page) should simply be the heading, image, and slogan of the site. The home page should NOT...
My Python file will not work below and I am not sure why, please help me debug! ********************************* Instructions for program: You’ll use these functions to put together a program that does the following: Gives the user sentences to type, until they type DONE and then the test is over. Counts the number of seconds from when the user begins to when the test is over. Counts and reports: The total number of words the user typed, and how many...
Hello can someone help me in my code I left it as comment task #0, task#1, task#2a and task#2b the things that I am missing I'm using java domain class public class Pizza { private String pizzaCustomerName; private int pizzaSize; // 10, 12, 14, or 16 inches in diameter private char handThinDeep; // 'H' or 'T' or 'D' for hand tossed, thin crust, or deep dish, respecitively private boolean cheeseTopping; private boolean pepperoniTopping; private boolean sausageTopping; private boolean onionTopping; private boolean...