本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- ssydxa219
- e_e
- javashop
- sam123456gz
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- xiangjie88
- wiseboyloves
- ganxueyun
- lemonhandsome
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- Xeden
- zhanjia
- johnsmith9th
- forestqqqq
- luxurioust
- lzyfn123
- ajinn
- nychen2000
- wjianwei666
- daizj
- hanbaohong
- 喧嚣求静
- ranbuijj
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
最新文章列表
python笔记8 文件和异常
###从文件中读取数据
#读取整个文件
with open("1.txt") as file_object: #在当前执行的文件所在的目录中查找指定的文件(1.txt)
contents=file_object.read()
print(contents.rstrip()) #方法rstrip()删除字符串末尾的空白
#文件路径
with open("c ...
python笔记7 类
######类##
##创建和使用类
#创建Dog类(类中的函数成为方法)
class Dog():
"""一次模拟小狗的简单测试"""
def __init__(self,name,age): ##init前后两个下划线_
"""初始化属性name和age"""
...
python笔记6 函数
##关键字def自定义函数
def greet_user(username): #username 为形参
print('Hello,'+username.title()+'!')
greet_user('Curry') #'curry'为实参
##传递实参##----函数的调用:位置 ...
python : sqldf for pandas
pypi.org 下载 pandasql tar.gz
sqldf for pandas
cd \Anaconda3\Scripts
pip install pandasql
---
from pandasql import sqldf
df = sqldf(query, globals())
python笔记5_用户输入和while循环 exercises
###用户输入和while循环#exercise
#餐厅订位
customer=input('How many people have dinner,please?')
customer=int(customer)
if customer>=7:
print("Sorry,there aren't empty table and wecome to you next time!&q ...
python笔记5 用户输入和while循环
###用户输入和while循环
##函数input()的工作原理:让程序暂停运行,等待用户输入如一些文本,之后 将其存储在一个变量中
message=input('Tell me some thing ,and I will repeat it back to you:')
print(message)
#用户按照提示输入自己的名字
name=input('please enter your nam ...
python笔记4_字典exercises
#用字典存储一个人的信息
personal_informations={
'first_name':'li',
'last_name':'hua',
'age':'20',
'city':'shanghai',
'constellation':'pisces',
}
print(personal_informations)
#存储多个人喜欢的数字,并单 ...
python创建数值列表和if语句,for循环的综合练习
#1-20的列表
a=list(range(1,21))
print(a)
#1-10000的列表
squares=[]
for value in range(1,10001):
square=value
squares.append(square)
print(squares)
#1-10000的列表,核实从1开始10000结束,求1-10000之和
a=list(range(1,10001) ...
python笔记1,2总结
注:笔记2已补全
#首字母大写 .title()
#.append()方法:可在列表或元组末尾添加元素
主要在for循环中常用
#在提列表元素是的索引是从0开始,负数表示倒数,没有索引则默认是第一个元素或者最后一个元素
#列表排序详细在笔记1中
###for循环##可参考笔记2
#for ** in **:下的代码缩进则表示要循环,没缩进则不循环
#“ :”一定要带 ...
tf使用model的helloworld
yum install automake autoconf libtool libicu gcc-c++
####yum install bazel -y 这样安装版本过新会报错:
lease downgrade your bazel installation to version 0.26.1 or lower to build TensorFlow
yum -y install epe ...