美文网首页
3.4字符串的操作

3.4字符串的操作

作者: 追梦者Every | 来源:发表于2017-10-26 12:28 被阅读12次

    1、字符串的操作方法采用格式:

    <string>.func()

    字符串处理方法

    2、遍历字符串中每个字符

    for <var> in <string>:

    3、字符串的操作

    转义符可以在字符串中表达一些不可直接打印的信息。

    例:用\n表示换行

    ①字符串"Hello\nWorld\n\nGoodbye 32\n"

    ②用print()函数打印后的输出效果如下:

    Hello

    World

    Goodbye 32

    相关文章

      网友评论

          本文标题:3.4字符串的操作

          本文链接:https://www.haomeiwen.com/subject/wbahpxtx.html