caoguojian
文章 30
Python Python 初阶学习之文件读写(七)
#edcoding : utf-8 #文件打开 ”’ file_handler = open(文件路径,mo…
Python Python 初阶学习之set集合(六)
#encoding: utf-8 #集合 set 大括号,逗号隔离 所有元素不可变且无重复元素的 list 无…
Python python 练习之用户增删改(NEW)(二)
#encoding : utf-8 #用户库 key 必须为自增 —-id # users = {# 2 …
Python Python 初阶学习之字典练习(五)
#encoding: utf-8 #字典 大括号包括,key:value 格式,每个元素用逗号分开,无序 a …
Python Python 初阶学习之string字符串(四)
#encoding: utf-8 ”’ 特殊字符 \ 转义字符 \r 回车 \n 换行 \t tab 键 \…
Python python 练习之用户增删改(一)
#encoding: utf-8 #练习 #用户数据库,管理员账号 users = [(0,’admin’,2…
Python Python 初阶学习之tuple元组(三)
#encoding: utf-8 #tuple 元组值不可变 # nums = (1,2,3,4,) # pr…
Python Python 初阶学习之list集合(二)
#encoding:utf-8 #有序 list 集合 #a = [1,100,2,4,3] ######–…
Python Python 初阶学习之if循环语句(一)
#encoding: utf-8 import random # number1 = float(input(…