python 基础学习

import调用

from hello import *
import hello
hello.hello("sakura")

时间

from datetime import datetime
def time():
    dt = datetime.now()
    print(f"{dt.year}年{dt.month}月")
    #print(dt.strftime('%Y年%m月')) error???

变量拼接字符串

print("ya~hello~" + name)
print('1234,{}'.format(name))
print(f'1234,{name}')
#error:print("1234,{name}")
#error:print("1234,{}").format(name)

replace&json解析为数组

def ai_talk(question):
    return question.replace('你','我').replace('不','').replace('吗','').replace('?','!').replace('?','!')

def tianqi(city):
    url = "http://t.weather.sojson.com/api/weather/city/101030100"
    res = requests.get(url)
    tq_json = json.loads(res.text)
    wendu = tq_json["data"]["wendu"]
    #print(tq_json)
    print(wendu)
    print(f'{city}:温度 {wendu}')

输入&append&min&lambda

guess = input('guess a number from 1 to 10')~

scores.append((answer,guess))#元组tuple,append~

print(min(scores, key=lambda x:x[1]))#匿名函数,x表示元组~

split

arr = str.split("&lt")
for order,s in enumerate(arr,-1):
    #print("第", order, "个", s)
    if("os" in s):
        print("第",order,"个",s)~
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值