On 2017-09-02 18:53, Charles Hixson wrote:
python3 --version
Python 3.5.3
Running on Debian stretch
In this code s is a string parameter
while (j < k and \
(s[j].isalnum()) or \
(s[j] in seps and s[j+1].isalnum()) ):
j = j + 1
print ("i = {0}, j =
Charles Hixson wrote:
> python3 --version
> Python 3.5.3
>
> Running on Debian stretch
>
> In this code s is a string parameter
>
> while (j < k and \
> (s[j].isalnum()) or \
>(s[j] in seps and s[j+1].isalnum()) ):
> j = j + 1
> print ("i = {0}, j = {1
python3 --version
Python 3.5.3
Running on Debian stretch
In this code s is a string parameter
while (j < k and \
(s[j].isalnum()) or \
(s[j] in seps and s[j+1].isalnum()) ):
j = j + 1
print ("i = {0}, j = {1}, k = {2}, len[s] = {3}". \
format(i,