首字母大写

a = 'alex'
b = a.capitalize()
print(a)
print(b)
import sys
print(sys.argv)
原文地址:https://www.cnblogs.com/huangjinshan/p/6210341.html