文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Files and Strings(Chapter 10 of Python 3 Object Oriented Programming)

Files and Strings(Chapter 10 of Python 3 Object Oriented Programming)

时间:2010-09-06  来源:Ray Z

string  1 >>> template = "Hello {}, you are currently {}."
 2 >>> print(template.format('Ray', 'writing'))
 3 Hello Ray, you are currently writing.
 4 >>> template = "Hello {0}, you are {1}. Your name is {0}."
 5 >>> print(template.format('Ray', 'writing'))
 6 Hello Ray, you are writing. Your name is Ray.
 7 >>> template = """
 8 public class {0} {{
 9 public static void main(String[] args) {{
10 System.out.println({1});
11 }}
12 }}"""
13 >>> print(template.format("MyClass", "print('hello world')"))
14 
15 public class MyClass {
16 public static void main(String[] args) {
17 System.out.println(print('hello world'));
18 }
19 }
20 >>> template = """
21 From: <{from_email}>
22 To: <{to_email}>
23 Subject: {subject}
24 {message}"""
25 >>> print(template.format(from_email="[email protected]", to_email="[email protected]", message="message", subject="You got a new message"))
26 
27 From: <[email protected]>
28 To: <[email protected]>
29 Subject: You got a new message
30 message
31 >>> print("{} {label} {}".format("x", "y", label="z"))
32 x z y

  

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载