Python Forum
Change type of elements in a list by column
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Change type of elements in a list by column
#5
import sys

myList = [['john', '1', '2:00pm'], ['becky', '2', '3:15pm'], ['tom', '3', '3:20pm']]

def get_myList_item(row=0, column=0):
    try:
        # Python 3.6.0
        print(f'row: {row}, column: {column} contains {myList[row][column]}')
        # other python:
        print('row: {}, column: {} contains {}'.format(row, column, myList[row][column]))
    except:
        print("Unexpected exception:", sys.exc_info()[0])

if __name__ == '__main__':
    get_myList_item(row=1,column=0)
result:
Output:
row: 1, column: 0 contains becky
Reply


Messages In This Thread
RE: Change type of elements in a list by column - by Larz60+ - Dec-28-2016, 10:57 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  unable to remove all elements from list based on a condition sg_python 3 502 Jan-27-2024, 04:03 PM
Last Post: deanhystad
Question mypy unable to analyse types of tuple elements in a list comprehension tomciodev 1 520 Oct-17-2023, 09:46 AM
Last Post: tomciodev
  Change font in a list or tuple apffal 4 2,745 Jun-16-2023, 02:55 AM
Last Post: schriftartenio
  Checking if a string contains all or any elements of a list k1llcod3 1 1,158 Jan-29-2023, 04:34 AM
Last Post: deanhystad
  How to change the datatype of list elements? mHosseinDS86 9 2,056 Aug-24-2022, 05:26 PM
Last Post: deanhystad
  search a list or tuple for a specific type ot class Skaperen 8 2,007 Jul-22-2022, 10:29 PM
Last Post: Skaperen
  find some word in text list file and a bit change to them RolanRoll 3 1,582 Jun-27-2022, 01:36 AM
Last Post: RolanRoll
  ValueError: Length mismatch: Expected axis has 8 elements, new values have 1 elements ilknurg 1 5,249 May-17-2022, 11:38 AM
Last Post: Larz60+
Question Change elements of array based on position of input data Cola_Reb 6 2,206 May-13-2022, 12:57 PM
Last Post: Cola_Reb
  TypeError: unsupported opperand type(s) for %: 'int' and 'list' cool_person 7 2,265 May-07-2022, 08:40 AM
Last Post: ibreeden

Forum Jump:

User Panel Messages

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