1.简单的乘法程序
i = 256*256 print('The value of i is', i) 运行结果: The value of i is 65536
2.执行python脚本的两种方式
通过python
通过./1.py
3.首字母大写
a="alex" b=a.capitalize() print(a) print(b) 运行结果: alex Alex