首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看Python
print(hello world!)
阅读全部 | songzixiong 贴于 2020年5月3日 22:44     hide bbsi
println("hello")
阅读全部 | Rencontre 贴于 2020年4月9日 18:36     hide bbsi
language = "Python"
print(language+" is my favorite my language")
阅读全部 | Divine 贴于 2020年4月5日 13:13     hide bbsi
print('你好’)
阅读全部 | あいうえお 贴于 2020年2月27日 12:18     hide bbsi
import turtle
import random
game = turtle.Screen()
turtle.speed(0)
turtle.bgcolor('black')
turtle.color('white')
turtle.pensize(4)
acc_ext = 0
x=10
turtle.penup()
turtle.goto(0,-x)
turtle.pendown()
......................
阅读全部 | hefuchun 贴于 2020年2月7日 10:39     hide bbsi
import requests
from pyquery import PyQuery as pq
from prettyprinter import cpprint
import json
from urllib.parse import urlencode
from selenium import webdriver
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
import time
import csv
import datetime
......................
阅读全部 | xiexiejia 贴于 2019年12月13日 19:35     hide bbsi
#!-*- coding:utf-8 -*-
# @author:      dwcai
# @contact:     1510336267.com
# @software:    PyCharm
# @file:        weather_query.py
# @time:        2019-12-05 22:59
# @desc:        查询天气
# --------------------- sep ---------------------
import requests
import json


......................
阅读全部 | dwcai 贴于 2019年12月6日 00:13     hide bbsi
class BookInfoManager(models.Manager):
    """图书模型管理器类"""
    # 1.改变查询的结果集
    def all(self):
        # 1.调用父类的all,获取所有数据
        books = super().all()
        # 2.对数据进行过滤
        books = books.filter(isDelete=False)
        # 3.返回books
        return books

    # 2.封装函数:操作模型类对应的数据表(增删改查)
......................
阅读全部 | fightingboys 贴于 2019年9月17日 10:31     hide bbsi
#######################################################################
# Copyright (C)                                                       #
# 2016-2018 Shangtong Zhang(zhangshangtong.cpp@gmail.com)             #
# 2016 Kenta Shimada(hyperkentakun@gmail.com)                         #
# Permission given to modify the code as long as you keep this        #
# declaration at the top                                              #
#######################################################################

import numpy as np
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
......................
阅读全部 | ssrww000 贴于 2019年9月5日 19:51     hide bbsi
import requests
import json


list1=['day','week','wea','tem','tem1','tem2','win','win_speed','air_level','air_tips']                                                         list2=['','','天气: ','温度: ','最高温度: ','最低温度: ','风向: ','风速: ','空气质量: ','建议: ']

def show(days):
    for i in range(10):
        r=str(list2[i])+str(days[list1[i]])
        print(r)

def show2(days):
......................
阅读全部 | fighting910 贴于 2019年7月25日 19:15     hide bbsi
上一页 14 15 16 17 18 19 20 21 22 23 下一页