Python 练习实例70

Python 编程100例Python 编程100例

题目:写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。

程序分析:无。

程序源代码:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    s = raw_input('please input a string:\n')
    print 'the string has %d characters.' % len(s)

以上实例输出结果为:

please input a string:
abc
the string has 3 characters.

Python 编程100例Python 编程100例

Python 练习实例71 Python 100例 题目:编写input()和output()函数输入,输出5个学生的数据记录。 程序分析:无。 程序源代码: 实例 [mycode3 type='python'] #!/usr/bin/python # -*- coding: UTF-8 -*- N = 3 #stu # num : string # name : string # score[4]..