python3.7 初学整理

Posted zrn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3.7 初学整理相关的知识,希望对你有一定的参考价值。

  • if判断句使用

the_world_is_flat=False
if the_world_is_flat:
    print ("Be careful not to fall off!")
else:
    print ("No!")

运行结果:

 

  •  运算

print(2+2)
print(8/5)
print(8/2) # //忽略小数部分

运行结果:

 

 除法永远返回浮点数

print(5**2) #乘方 5的2次方

运行结果:25

  • 赋值

width=10
height=20
area=width*height
print(area)

运行结果:200

  • 转义

print(\'C:\\some\\name\')
print(r\'C:\\some\\name\')

运行结果:

 

  •  连接字符串

str="pyt"
print(str+"hon")

运行结果:

 

  • 嵌套判断

num=float(input("请输入一个数字"))
if num>=0:
    if num==0:
        print ("")
    else:
        print ("正数")
else:
    print ("负数")

运行结果:

 

 

 

以上是关于python3.7 初学整理的主要内容,如果未能解决你的问题,请参考以下文章

python3.7-初学篇-16

python3.7-初学篇-08

python3.7-初学篇-17

python3.7-初学篇-02

python3.7-初学篇-09

python3.7-初学篇-10