python学习打卡第一天

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)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值