- input 的底层实现:sys.stdin.readline(),从控制台获取信息
- input():可传入str提示,例如:input("plz input here:")
- sys.stdin.readline():可传入Integer,作为设置读取的字符数,例如:获取前4个字符,sys.stdin.readline(4), 注:当传入负数时,表示读取整行
****************************************************************
- print的底层实现:sys.stdout.write(),打印信息到控制台
- print可设置分隔符和行尾符(默认为换行分隔),例如:设置空格行尾符,print("Love is wise, hate is foolish",end=" ");设置分隔符:print("the","desire","of",sep=",",end="!!/n") ==> the,desire,of!!
- sys.stdout.write("That is life") 没有换行