码迷,mamicode.com
首页 > 其他好文 > 详细

%%的一个应用

时间:2019-02-07 15:05:41      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:string   rip   esc   应用   cape   sed   pre   一个   ted   

 1 """
 2 This script illustrate the usage of escape symbol %%. In general, it is used in mutil-formatted string. when a string is
 3 formatted , %% can escape a % so that just one remains for the final formatting operation at the end.
 4 """
 5 a=%s%%s%yjs 
 6 print(a)    # print a as ‘%syjw‘
 7 b=a%jjj   # format variable a again
 8 print(b)    # print b as ‘jjjyjw‘
 9 #******************
10 a=%%s%s%yjw
11 print(a)
12 b=a%jjj
13 print(b)

 

%%的一个应用

标签:string   rip   esc   应用   cape   sed   pre   一个   ted   

原文地址:https://www.cnblogs.com/johnyang/p/10354801.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!