1. print(),type(),Bool=isinstance(v,type) ,变量,字符串,数值类型及转换
1.pirnt()函数的使用>>>print("helloworld")helloworld>>>print("helloworld\n"*8)helloworldhelloworldhelloworldhelloworldhelloworldhelloworldhelloworldhelloworld>>>print(5+3)8>>>print("hello","world")#","表示空格h