str1 = "我爱你"def func(a,b):global cc = a + breturn cs = func(str1,'武汉纺织大学')print(c)
举一反三
- def func(): global sum sum=0 print(sum) for i in range(5): sum+=1 print(sum) func() print(sum)
- 【单选题】以下代码返回的结果为()。 <? $str = "LAMP"; $str1 = "LAMPBrother"; $strc = strcmp($str, $str1); switch ($strc){ case 1: echo "str > str1"; break; case -1: echo "str < str1"; break; case 0: echo "str = str1"; break; default: echo "str <> str1"; } ?> (5.0分) A. true B. str <> str1 C. 程序运行出错 D. 根据版本来定
- 以下程序运行结果为()。 A: str>str1 B: str C: str=str1 D: str<>str1
- 下面代码的运行结果是 def func(num): num += 1 a =10 func(a) print(a)
- 执行以下程序,输出()n = 4def func(str): global n n=3 return str*nfunc("hello")print(n) A: hellohellohellohello B: hellohellohello C: 4 D: 3