python学习笔记
2018-08-05 07:51:07来源:博客园 阅读 ()
变量
变量是为了存储和程序运算过程中的一些中间结果 方便以后调用
(变量命名规则)
1. 要具有描述性
2.变量名只能_和数字,字母组成
3.不以中文 为命名
4.不能以数字开头
5.保留字符不能被使用
常量 常量名全部大写代表是常量
实验作业
#print("hello,world")
#x=41
#y=3
#name = "wangliang"
#print(x*y) #
#print(name)
实验作业
name = "a"
name2 = name
print(name,name2)
name = "jack"
print(name,name2)
内存回收 释放内存
del agr 被内存释放的变量
注释:
单行注释用 # 被注释内容
多行注释用3个 """被注释内容"""
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
death_age = 100
name = input ("your name:")
age = input ("you age:")
print( type(age))
#input 接收的所有数据都是数据都是字符串,即便你输入的是数字但依然会当成字符创来处理
#int integer = 把串 转成int , 用int(被转的数据)
#str strring =字符串 吧数据转成字符串 用str(被转的数据)
death_age = 100
name = input ("your name:")
age = input ("you age:")
print( type(age) )
#input 接收的所有数据都是数据都是字符串,即便你输入的是数字但依然会当成字符创来处理
#int integer = 把串 转成int , 用int(被转的数据)
#str strring =字符串 吧数据转成字符串 用str(被转的数据)
print ("Your name:",name)
##print("You can still live for" ,death_age - int(age),"years...")
print("You can still live for" + str(death_age - int(age)) + "years...")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
age_of_princal = 46
guess_age =int( input(">>:") ) #赋值并转化 input 里面数据类型为 int类型
if guess_age == age_of_princal:
print("OK")
else: #python 强制要求缩进 按TAB 键
print("no")
# 输入年龄判断程序
age_of_princal = 46
guess_age =int( input(">>:") ) #赋值并转化 input 里面数据类型为 int类型
if guess_age == age_of_princal: #判断年龄等于实际就输出输出OK
print("OK")
elif guess_age > age_of_princal: #判断输入年龄大于实际年龄就输出 BIG
print("BIG")
else:
print("小于年龄") #否则就是小于年龄
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#实验成绩打分程序
score = int(input("score:"))
if score >= 90:
print("A")
elif score >= 80:
print("B")
elif score >= 70:
print("C")
else:
print("不及格")
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash