1.print输出:print("i'm wang")即可直接输出至屏幕
2.print('apple'+'car')#单引号双引号所引用的的字符串都可以相加
print('apple'+'4')
print('apple'+str(4))
print("apple"+"car")
print('i\'am wang')#\在单引号里面可以起到再加单引号的作用
print(1+2)
print('1+2')字符串可以直接相加,加号不会显现
3.**n代表n次方,//代表取整
4.python只有两种循环语句while和for ,while语法
while temp<=10:
print(temp)
temp+=1
for语法:
for i in temp:
print(i)
5.x=4
y=2
z=3
#if x==y:
# print("x is equal y")
if x>y:
print('x is great than y')
elif x<y:#else if 在python中表达方式
print('x is less than y')
#elif只会停留在第一次满足结果的语句,只要条件满足,则会忽略后面所有语句
elif x<10:
print('test')
#该语句虽然结果为true,但并不会运行。
else:
print('x is equal to y')
6.def sale_car(price,colour='red',is_second=True):
#默认值需要放到后面,未被默认定义值需要放到前面
print('price:',price,
'coloue:',colour,
'二手车:',is_second
)
sale_car(1000250,"blur",False)