python笔记-基础-04

python笔记

异常处理

try:
    x=20
    y=0
    print(x/y)
except BaseException as a:
    print(str(a))
finally:
    print('this is a test')

if in 语句

# if语句
country='abc'
if country.lower()=='China':
    print('you are Chinese')
elif country.lower() in {'usa','abc','def'}:
    print('you are bad')
else:
    print('not you')

and

#and
m=10
n=20
if m>n and m>10:
    print('00000000')
else:
    print('11111111')

列表-数组-词典

# 数组
from array import array
sours=array('d')#声明类型
#列表
scorse=[]
scorse.append('aaaa')  #添加
scorse.append(12)
scorse.insert(0,'bbb') #插入
print(scorse[0:2])
print(scorse)
#字典
person={'a':'hello'}
person['b']='my'
person['c']='friends'
print(person['a'])

for while循环

#for while循环
for index in range(0,5):
    print(index)
    
for name in ['a','b','c']:
    print(name)
    
index=0
while index<10:
    print(index)
    index=index+1

函数及其参数

#函数
import datetime
def print_time(name,isUpper):
    print(datetime.datetime.now())
    if isUpper:
        return name[0:2].upper()
    else:
        return name[0:2]
        
print(print_time('huang',True))
print(print_time('huang',False))
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值