def firstCharUpper(s):
return s[:1].upper()+s[1:]
print firstCharUpper('hello')
print firstCharUpper('sunday')
print firstCharUpper('september')
return s[:1].upper()+s[1:]
print firstCharUpper('hello')
print firstCharUpper('sunday')
print firstCharUpper('september')
2019-07-05
已采纳回答 / 阿川776
因为你 x=x+2 先执行了,所以 sum = 3 +5 +7 ...+101 ,是从3开始加的, 3+5+..+99 = 2499,最后x是101;
2019-07-05
已采纳回答 / 输入法师
因为定义了greet函数,引用它时就要print "Hello,"+ name +"."greet(),即使用默认参数,带入就输出“Hello,world”greet('Bart'),就将‘Bart’带入name的位置。
2019-07-05
最赞回答 / AY9717
https://www.cnblogs.com/tgycoder/p/6063722.html一个不成熟的理解,仅供参考刚开始的圆盘和柱子的状态是这样<...图片...>不管有多少个圆盘, 完成这个移动,总的来说需要三步。第一部分 就是要把 最大...
2019-07-05
最新回答 / qq_南有乔木彡_czHMUW
你做的是6-10的题吧。你的代码应该没问题不会报错,但是结果肯定不满足题目要求。题目要求:给定一个list,对list中的每一个元素,如果在set中,就将其删除如果不在set中,就添加进去分析一下...
2019-07-05