新的篇章--Python
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新的篇章--Python相关的知识,希望对你有一定的参考价值。
这周已经开始Python的学习了,感觉Python类似于Powershell, 但又有不同点。在此总结一下新学到的资料;
- 简单的使用变量的方法:
name= input("input your name:")
age= int(input("input your age:")) #int代表数字 # %f代表小数点
job= input("input your job:")
# 可以使用‘‘‘ ‘‘‘作为大量命令的方案
msg =‘‘‘
-----------你好!%s
Name : %s
Age: %d
Job: %s
------End------
‘‘‘% (name, name, age, job) # 使用%作为多段变量,必须加在此处。
print(msg)
以上是关于新的篇章--Python的主要内容,如果未能解决你的问题,请参考以下文章