python语法讲解
%s 表示占位,随后用%后的变量替换,用法见下面程序段
a = 100 b = "Hello World" print " point = %s\n\" %s \""%(a,b)
转义字符用法跟C++差不多