
Python
石兴稳
车轮塑造形体,技术改变生活
展开
-
python 中关于class 类中的object 对象的是否添加
python 中关于class 类中的object 对象的是否添加在python2中 object 有无object 对象是有区别的,但是在python3中已经默认都继承了object对象了,在python2中,底有什么区别的现在用一段简单的代码 来讲述一下:在python2中运行如下#!/usr/bin/env python2# -*- coding:utf-8 -*-class Boy: """ 不带object """ name = "qiang原创 2020-11-12 10:04:39 · 305 阅读 · 0 评论 -
淘宝自动下单
from selenium import webdriverfrom time import sleepimport datetimeimport timeoption = webdriver.ChromeOptions()option.add_argument('disable-infobars')#打开淘宝网站def login(): driver.get('https://www.taobao.com') time.sleep(2) #登录淘宝账户且...原创 2020-11-11 09:29:23 · 3604 阅读 · 2 评论 -
Python3 shopping_list.py
#!/bin/python###产品列表productList = [ ['Iphone6', 5800], ['Macbook', 9000], ['Coffee', 32], ['Pythonbook', 80], ['Bicycle', 1500]]###创建一个购物列表shoppingList=[]###输入工资salary = in...原创 2019-12-06 15:49:18 · 194 阅读 · 0 评论 -
Python3 打印99 乘法表
import os'''打印9*9乘法表,1*1=11*2=2 2*2=41*3=3 2*3=6 3*3=91*4=4 2*4=8 3*4=12 4*4=161*5=5 2*5=10 3*5=15 4*5=20 5*5=251*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=361*7=7 2*7=14 3*7=21 4*7=28 5*7=35 6*7...原创 2019-12-05 11:26:41 · 269 阅读 · 0 评论 -
python 模块查找
举例说明timeit 模块1.用IDLE 的官方文档,直接输入timeit,里面有很详细的介绍,当然都是英文的哦^_^2. 打开 IDLE#导入这个模块import timeit##查看timeit 说明timeit.__doc__print(timeit.__doc__) timeit.__all__timeit.__file__dir(timei...原创 2018-12-14 16:08:39 · 414 阅读 · 1 评论 -
Python 递归实例
用for 循环迭代方式实现阶乘#!/usr/bin/pythondef factorial(n): result = n for i in range(1,n): result *= i return resultnumber = int(input('请输入正整数:'))result = factorial(number)print...原创 2018-12-11 15:28:11 · 733 阅读 · 0 评论 -
斐波那契数列
斐波那契数列 def fab(n): n1 = 1 n2 = 1 n3 = 1 if n < 1: print("输入有误!") return -1 while (n-2) > 0: n3 = n2 + n1 n1 = n2 n2 = n3 ...原创 2018-12-11 15:55:40 · 173 阅读 · 0 评论