博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
习题 8: 打印,打印
阅读量:6489 次
发布时间:2019-06-24

本文共 571 字,大约阅读时间需要 1 分钟。

formatter = "%r %r %r %r"print (formatter % (1, 2, 3, 4))print (formatter % ("one", "two", "three", "four"))print (formatter % (True, False, False, True))print (formatter % (formatter, formatter, formatter, formatter))print (formatter % (    "I had this thing.",    "That you could type up right.",    "But it didn't sing.",    "So I said goodnight."))

1 2 3 4

'one' 'two' 'three' 'four'
True False False True
'%r %r %r %r' '%r %r %r %r' '%r %r %r %r' '%r %r %r %r'
'I had this thing.' 'That you could type up right.' "But it didn't sing." 'So I said goodnight.'

知识在于点滴积累

转载地址:http://cyouo.baihongyu.com/

你可能感兴趣的文章
树莓派的rc.local档(设置开机)
查看>>
chrome打开本地文件目录
查看>>
mysql ODBC 在64位下提示找不到odbc驱动问题
查看>>
MySQL的事务处理及隔离级别
查看>>
一个测试SQL2005数据库连接JSP档
查看>>
JspContext对象与PageContext对象
查看>>
java中间==、equals和hashCode差额
查看>>
TextureView+SurfaceTexture+OpenGL ES来播放视频(一)
查看>>
才一年,H5的发展就成这样了......
查看>>
McBsp接口使用和概念
查看>>
关于WEB Service&WCF&WebApi实现身份验证之WCF篇(1)
查看>>
类是公共,它应该被命名为.java文件声明
查看>>
介绍一个超好用的HICHARTS扩展插件
查看>>
中断相关一【转】
查看>>
MonkeyImage API 实践全记录
查看>>
LeetCode - Subsets
查看>>
可选链
查看>>
Docker CPU 资源限制——CPU分片功能测试
查看>>
FP-Growth算法之频繁项集的挖掘(python)
查看>>
基于Hibernate注解的解读
查看>>