1. print()默认是print(end='\n') 如果不想换行可以print(end='')
2. 使print内容变成一行 print(end='\t')
3. 不设置指定位置,按默认顺序 "{} {}".format("hello", "world") eg 打印99乘法表 print({}*{}={} \t'.format(i,j,i*j),end = ' ')
4. 定义函数 def function(): pass 调用函数 if __name__ == '__main__': function()
5. Python中格式化字符串目前有两种方法:%和format s1 = "敌人坐标:%s" % (c,) s2 = "敌人坐标:{}".format(c)