- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
4 Posted Topics
Make a program that can open up text files and count the number of characters that are in it. Using that as a starting point have it count the number of words. Then make it create an average for letters per word.
def multiply(m, n): if n == 0 and m>0: while m>0: print(0) m -= 1 elif m>0 and n != 0: while m>0: print(m * n) m -= 1 elif m<=0: print('M must be greater than 0') Does this work for what you are asking?
I am pretty sure that to import Tkinter in python 3.X you have to type: import tkinter instead of import Tkinter Seeing the code would help us see the problem.
Currently I am working on a project (on and off for two months) called Chrono Leap. The main idea is that you will be able to go from the past to the present to the future whenever you want. You will face creatures and all that jazz as you go …
The End.
nichom