
python
致敬Kevin Mitnick,我用python
工具人01
ing
展开
-
某丰快递分拣小程序-python字典
#!/usr/bin/env python # -*- coding:utf-8 -*-# @Author : {玄铁重剑无锋}# @License : (C) Copyright 2021 玄铁重剑无锋, All rights reserved.# @Contact : {sfrexpect@163.com}# @File : 03_快递分拣小程序.py# @Time : 2021/8/31 13:42# @Desc : #!/usr/bin/env py...原创 2021-08-31 15:14:15 · 7491 阅读 · 0 评论 -
班级分组小程序-列表
#!/usr/bin/env python# -*- coding:utf-8 -*-# @Author : {玄铁重剑无锋}# @License : (C) Copyright 2021 玄铁重剑无锋, All rights reserved.# @Contact : {sfrexpect@163.com}# @File : 03_班级按成绩分组小程序.py# @Time : 2021/8/29 21:53# @Desc :stu_list = [['李渊', 8...原创 2021-08-30 22:05:57 · 1890 阅读 · 0 评论 -
年会抽奖小程序
#!/usr/bin/env python # -*- coding:utf-8 -*-# Author:玄铁重剑无锋# @Author : {玄铁重剑无锋}# @License : (C) Copyright 2021 玄铁重剑无锋, All rights reserved.# @Contact : {sfrexpect@163.com}# @File : 02_年会抽奖小程序.py# @Time : 2021/8/26 10:23# @Desc .原创 2021-08-26 11:26:11 · 754 阅读 · 0 评论 -
京牌抽号小程序
个人写的:#!/usr/bin/env python # -*- coding:utf-8 -*-# @Author : {玄铁重剑无锋}# @License : (C) Copyright 2021 玄铁重剑无锋, All rights reserved.# @Contact : {sfrexpect@163.com}# @File : 02_抽京牌小程序.py# @Time : 2021/8/25 16:30# @Desc : import randomim.原创 2021-08-25 21:28:16 · 570 阅读 · 0 评论 -
python_99乘法表
#!/usr/bin/env python # -*- coding:utf-8 -*-# @Author : {玄铁重剑无锋}# @Contact : {sfrexpect@163.com}# @File : 02_for_99乘法表.py# @Time : 2021/8/25 11:35# @Desc : for heng in range(1,10): for shu in range(1,10): if heng >= shu: .原创 2021-08-25 11:41:05 · 152 阅读 · 0 评论 -
python函数-返回值练习四点
返回值在函数中使用return,返回我们需要的值调用返回值的函数时,需要提供一个变量,用于存储返回的值1.返回简单的值def get_full_cool_name(first_name,last_name): full_cool_name = first_name.title()+' '+ last_name.title() return full_cool_nameBell_Sun = get_full_cool_name('xiao','ming')print(B.原创 2020-12-16 17:31:11 · 421 阅读 · 0 评论 -
python函数-传递参数最需要学习的三点
# 位置实参# 按顺序来,没有和形参行程对应关系# 位置实参print("位置实参")def pet1(pet_type,pet_name): print("My favorite pet :"+ pet_type) print("Pet name :" + pet_name.title()) print("%s likes chicken." % pet_name.title())pet1('dog','xiaobai')pet1('xiaobai','dog'.原创 2020-12-10 14:53:58 · 110 阅读 · 1 评论 -
python中items()函数
items() 函数以列表返回可遍历的(键, 值) 元组。将字典中的键值对以元组存储,并将众多元组存在列表中。如:favorite_places = {'XiaoMing': 'TJL','XiaoQiang':'Amercia','Dongsheng':'Japan'}print("数值:%s" % favorite_places.items())for key,value in favorite_places.items(): print(key,value)数值:dic.原创 2020-12-08 16:25:55 · 30151 阅读 · 0 评论 -
python中join()函数
引用博客园littlefive的python中的join()函数的用法python中的join()函数的用法函数:string.join()Python中有join()和os.path.join()两个函数,具体作用如下:join(): 连接字符串数组。将字符串、元组、列表中的元素以指定的字符(分隔符)连接生成一个新的字符串os.path.join(): 将多个路径组合后返回1、join()函数语法: 'sep'.join(seq)参数说明sep:分隔符。可以为空seq:要连转载 2020-12-03 10:12:52 · 319 阅读 · 0 评论 -
Hello World GitHub指南
You’ll learn how to:Create and use a repository(存储库)Start and manage a new branch(分支)Make changes(更改)to a file and push(推送) them to GitHub as commits(提交)Open and merge(并合)a pull(拉) request(请求)What is GitHub?GitHub is a code hosting platform(代..翻译 2020-10-24 20:44:08 · 236 阅读 · 0 评论 -
pycharm中的代理,GitHub,Git配置
1、pycharm代理设置:首先 File -> Settings, 搜索框输入http然后 在“Manual proxy configuration”(手动代理配置)中进行配置最后 进行“Check c onnection”(检查连接测试)测试没问题,点击Apply,OK保存退出,代理设置完毕2、pycharm中绑定GitHub账号首先 要注册GitHub 写的停好的教程1教程2然后 File -> Settings, 搜索框输入github最后 点击“Lo..原创 2020-10-23 15:31:04 · 18379 阅读 · 2 评论 -
python中变量引用的推荐方式
输入:input输出3种推荐方式:#!/usr/bin/env python # -*- coding:utf-8 -*-# Author:Bell Sun# name = test #name 等于变量test,而不是值name = "test"age = "18"# 一次指定一次使用:print("第0种:")print("Name and Age:",name,age)print("第一种:")print('''Name:%s , Age:%s'''%(na...原创 2020-10-13 23:43:07 · 377 阅读 · 2 评论 -
操作列表(四)
原创 2020-05-02 19:55:58 · 617 阅读 · 0 评论 -
列表简介(三)
原创 2020-05-02 19:53:27 · 138 阅读 · 0 评论