How to teach beginners reversing a string in Python?
I am teaching a course "Introduction to Computer Programming" to the first year math students. One has to assume that this is the first exposure of students to computer programming. Here are the main goals of my teaching:
My method of teaching is to give for each newly introduced concept a series of problems and teasers that motivate students. For instance, when introducing strings and lists a natural question is the task of string or list reversal. If I ask students to write a code that will check whether a string is a palindrome then I better tell them how to reverse it.
For lists, a natural solution myString.reverse()
has at least two drawbacks:
The real question is: How should one introduce the problem of reversing a string in Python?
You could teach them about stride notation ( ::
) first and then slicing and apply both.
s = 'string'
s = s[::-1]
print s # gnirts
References and more information:
In response to your comment, you can supply either arguments.
>>> s[len(s):None:-1]
'gnirts'
>>> s[5:None:-1]
'gnirts'
>>> s[::-1] # and of course
'gnirts'
The two obvious ways are:
''.join(reversed(s))
and
s[::-1]
I think both are non-trivial for a programming newbie, but the concepts involved are not really that difficult.
The second way is easier to understand if you start by showing them what the results of s[::3]
, s[::2]
and s[::1]
are. Then s[::-1]
will come naturally :)
Just ask them a riddle like this:
why
>>> 'dammitimmad'[::-1] == 'dammitimmad'
True
but
>>> 'dammit im mad'[::-1] == 'dammit im mad'
False
?
链接地址: http://www.djcxy.com/p/54300.html上一篇: 12岁的好学习者书籍?