Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python count lines in string

txt = 'line1
line2
line3
'  # Three newline characters
print(txt.count('
'))         # prints: 3
 
PREVIOUS NEXT
Tagged: #python #count #lines #string
ADD COMMENT
Topic
Name
8+9 =