[Lugstuff] LUG meeting reminder Monday 6/4/18 7PM @ Barnes & Nobles sb

Annapolis Linux Users Group lugstuff at annapolislinux.org
Sun Jun 3 11:01:48 EDT 2018


We have a LUG meeting Monday night at 7PM in Barnes and Nobles Startbucks.  

Please bring your Linux question.

Here is some Python code for counting characters in a string. 

#!/usr/bin/python
#description counting characters in a string 
#warning: this code was untested after adding the comments
#filename: superlong_string_counter.py

string ="Super Long String. We have no meeting notes from May 2018."
count = 0
for c in string:
  count = count + 1

print count




More information about the Lugstuff mailing list