摘要:
1.函数调用定义。 def sayHello(): print ('Hello World!')sayHello() 2.函数形参 def printMax(a,b): if (a>b): print ( a, 'is maximum') if (a<b): print ( b, 'is maxim 阅读全文
摘要:
版本不同语法不同 1. print (‘’) print ‘’ 2.input 与 raw_input 3代码(if和else用法): number = 23guess = int(input ('Enter an integer:')) if guess == number: print ('Co 阅读全文