Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
beginner help in python
#8
(Dec-13-2020, 04:57 PM)bowlofred Wrote: You'll need to show the code. When I change the code to have the line above, it doesn't do that. Show what you're running now.

It's working now, i don't know what i changed i just restarted the program. Here is the final code, btw thank you everyone for the help.
def tokenize(lines):
words = []
for line in lines:
start = 0
while start < len(line):
while line[start].isspace() == False:
print(line[start])
start = start +1
start = start+1
return words

tokenize([' apple pie ',' is in the making of '])
Reply


Messages In This Thread
beginner help in python - by aghapouria - Dec-12-2020, 11:18 PM
RE: beginner help in python - by Larz60+ - Dec-13-2020, 02:03 AM
RE: beginner help in python - by bowlofred - Dec-13-2020, 07:08 AM
RE: beginner help in python - by aghapouria - Dec-13-2020, 03:26 PM
RE: beginner help in python - by ndc85430 - Dec-13-2020, 07:22 AM
RE: beginner help in python - by aghapouria - Dec-13-2020, 03:22 PM
RE: beginner help in python - by bowlofred - Dec-13-2020, 04:57 PM
RE: beginner help in python - by aghapouria - Dec-13-2020, 09:11 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020