%%的一个应用

Posted JohnYang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了%%的一个应用相关的知识,希望对你有一定的参考价值。

 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)

 

以上是关于%%的一个应用的主要内容,如果未能解决你的问题,请参考以下文章

在选项卡式应用程序中的何处放置位置代码?

每当我运行我的片段时,这行代码 mapFragment.setRetainInstance(true);正在崩溃我的应用程序? [关闭]

Android - 应用程序启动时片段 onCreate 崩溃

执行代码时有时不显示对话框片段

使用 NavController 从片段导航到另一个片段

如何在片段中使用 GetJsonFromUrlTask​​.java