Python 练习范例 70

写一个函数,求一个字符串的长度,在 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)

以上 Python 代码输出结果如下

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

Python2 100 例

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.