python语法(一)

2018-04-08  本文已影响21人  Jalynn葸

注释:

1、单行注释:
#注释的内容
2、多行注释
 '''
 多行的内容
 '''

当代码中出现中文时

  #encoding:utf-8   或者 #-*- coding:utf-8 -*-(兼容python2和python3)
定义变量:
applePrice=3.5
applePrice = 7.5
total = applePrice *applePrice
image.png

退出python:exit()

print("nihao xjx葸娟霞")
high = input("请输入你的身高:")
age = 18
print("age:%d"%age)
在python2里:
image.png

python是弱引用语言
用input获取的所有类型都是字符串,例如:

a = "xjx"
type(a)
<type 'str'>

数据类型的转换:

age_num = int(age)

if-else:

if 条件:
条件成立,做这件事
else
条件不成立,做这件事

image.png

打印结果:
------------0----------
------------1----------
------------1----------
------------1----------
------------1----------
...
------------9----------

image.png

打印结果:
---------9-------

变量命名:

大驼峰,小驼峰命名法,xx_aa法,变量名不能用关键字

关键字:
image.png
运算符:

+(加) -(减) *(乘) /(除) //(商) %(余数) (平方) 210 = 1024(2的10次方)

image.png
image.png
数据格式的占位符:
image.png
上一篇 下一篇

猜你喜欢

热点阅读