Python Forum
Only first letter in the cell of the file.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Only first letter in the cell of the file.
#4
I am afraid that when you fix this problem you will encounter several new ones.

You current problem is that name and surname are strings and your write specific characters based on index. Dummy example:

>>> name = 'Joe'                                                                                         
>>> surname = 'Doe'                                                                                      
>>> for a in range(3): 
...     print(name[a] + ', ' + surname[a])
...
J, D
o, o
e, e
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
RE: Only first letter in the cell of the file. - by perfringo - Jun-27-2019, 01:43 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Get cell name from XML file paulo79 4 1,498 Mar-11-2022, 10:33 AM
Last Post: paulo79
  Python not reading cell in excel file wendysling 1 2,221 May-21-2019, 10:40 PM
Last Post: Larz60+
  [Help] How to count Letter frequency in a text file? vanicci 6 15,906 Aug-08-2018, 12:23 PM
Last Post: vanicci
  Problem with assigning directory of a file based on cell name mmaz67 3 2,910 Jul-04-2018, 08:40 AM
Last Post: Larz60+
  find cell value with matching regular expression of a row in excel file hruday 4 31,135 Jul-05-2017, 01:02 PM
Last Post: sparkz_alot

Forum Jump:

User Panel Messages

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