最近开始自学python,整理学习过程的记录。
1.交互
print("hello")
2.数和表达式
1/2 0.5
1/1 1.0
1//2 0
1//1 1
5.0//2.4 2.0
2**2 4
-2**2 -4
(-2)**2 4
pow(2,3) 8
abs(-10) 10
round(1.2) 1
3.变量
x=3
x*2 6
'''
使用变量前必须给它赋值,因为python变量没有默认值名称(标识符)只能由字母、数字和下划线构成,且不能以数字打头
'''
if 1 == 1: print('One equals one')
4.模块
import math
math.floor(32.9) 32
foo = math.sqrt
foo(4) 2.0
5.字符串
name = input("What is your name?")
print("Hello, " + name + "!")
"Hello, " + "world!"
'Hello, world!'
x = "Hello, "
y = "world!"
x + y
'Hello, world!'
"Hello, world!"
'Hello, world!'
print("Hello, world!")
Hello, world!
要表示很长的字符串(跨越多行的字符串),可使用三引号(而不是普通引号)。
print('''This is a very long string. It continues here.
And it's not over yet. "Hello, world!"
Still here.''')
还可使用三个双引号,如""“like this”""。请注意,这让解释器能够识别表示字符串开始和结束位置的引号,因此字符串本身可包含单引号和双引号,无需使用反斜杠进行转义。
|