Scripting Guide > Python > Working with JMP Data Tables
발행일 : 03/10/2025

Working with JMP Data Tables

Indexing in Python

Python in JMP uses Python’s zero-based indexing. The first element in a sequence has an index of 0, the second element has an index of 1, and so on.

The following example prints the value of each cell from the first column of a JMP data table to the log.

import jmp
 
dt = jmp.open(jmp.SAMPLE_DATA + 'Big Class.jmp')
 
for i in dt[0]:
	print(i)

Every name from the first column of Big Class.jmp prints to the log.

더 많은 정보를 원하십니까? 질문이 있습니까? JMP 사용자 커뮤니티에서 답변 받기 (community.jmp.com).