python基础学习
Bona Fides
.
展开
-
python基础3
一.程序的基本结构顺序结构 #顺序结构print('程序开始')print('开门')print('放大象')print('关门')print('程序结束') 选择结构 #选择结构#单分支结构——如果...就...# if# ...money=1000s=int(input('输入取款金额')) #input为str类型,转为int类型#判断余额是否充足if money>=s: money-=s print('取款成功,余额为:',m..原创 2022-04-02 20:45:06 · 2347 阅读 · 1 评论 -
python基础2
目录一.输入函数input()二.运算符三.运算符优先级一.输入函数input()input()函数作用:接收用户输入 返回值类型:输入值的类型为str 值的存储:采用=pr=input('大圣想要什么礼物呢')print(pr,type(pr)) #str类型!二.python中的运算符算术运算符标准算术运算符(+ - * / //) 取余运算符 幂运算符# ##############赋值运算符# 支持链式...原创 2022-03-27 15:44:24 · 1000 阅读 · 0 评论 -
python基础1
一.输出函数1.输出内容 数字,字符串,含有运算符的表达式##输出到控制台上##print(520)print('hello world')print("hello world") #只要有单引号就执行print('08')print(3+1) #——输出4####将数据输出到文件中,使用file=fp###fp=open('D:/text.txt','a+')print('hello world',file=fp)fp.close()2.输出目的地 ...原创 2022-03-25 21:28:38 · 1427 阅读 · 0 评论