zoukankan      html  css  js  c++  java
  • Exercise 9: Printing, Printing, Printing

    # Here's some new strange stuff, remember type it exactly.
    days = "Mon Tue Wed Thu Fri Sat Sun"
    months = "Jan
    Feb
    Mar
    Apr
    May
    Jun
    Jul
    Aug"
    print "Here are the days: ", days print "Here are the months: ", months
    print """
      There's something going on here.
      With the three double-quotes.
      We'll be able to type as much as we like.
      Even 4 lines if we want, or 5, or 6.
    """

    Why do the newlines not work when I use %r?
    That's how %r formatting works, it prints it the way you wrote it (or close to it). It's the "raw" format for debugging

    %r 不识别转义字符

  • 相关阅读:
    C# 应用
    C# 基础
    C# 基础
    C# 基础
    vs
    C# 基础
    C# 基础
    C# 基础
    C# 基础
    C# 基础
  • 原文地址:https://www.cnblogs.com/hluo/p/4043042.html
Copyright © 2011-2022 走看看