IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python学习day01_变量字符串与随机数 -> 正文阅读

[Python知识库]Python学习day01_变量字符串与随机数

Python学习_day01

初学建议使用IDLE: Integrated Development and Learing Evrionment 快乐码字

永远的 hello world

>>>print("hello world")
hello world
>>>print('hello world')
hello world
>>>print('''hello world''')
hello world

输入 import this,一起欣赏一下这首Python之诗~

>>>import this
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

1.1 一个猜数字的小游戏

"""用python设计一个小游戏"""
temp = input("猜一下心里想的一个数字:")
guess = int(temp)

if guess == 0:
    print("yes, 你猜对了!")
else:
    print("no, 你猜错了,正确的数字是0哦!")
print("game over!")

在这里插入图片描述
input() 函数用于接收用户的输入及返回。

tips:
Java用户记得不要写 " ; " 哦!
正确使用缩进!
正确拼写函数!

1.2 Python内置函数

输入dir(__builtins__), 查看Python的内置函数,两个下划线!
在这里插入图片描述

1.3变量 Variable

变量不可直接数字开头!
变量可以使用中文!
变量取最新值!
若要交换两个变量的值,可以不使用临时变量(第三变量),直接 x,y = y,x 即可交换!
在这里插入图片描述

1.4 字符串 String

Single quotes ’ ’
Double quotes " "
Triple quoted 三个单引号 ‘’’ ‘’’ 或 三个双引号 “”" “”"

在这里插入图片描述

引号必须成双成对!

1.5 转义字符

符号Notes
\\反斜杠(\)
\’单引号(’)
\"双引号(")
\a响铃(BEL)
\b退格符(BS)
\n换行符(LF)
\t水平制表符(TAB)
\v垂直制表符(VT)
\r回车符(CR)
\f换页符(FF)
\oooooo 为八进制数
\xhhhh 为十六进制数

在这里插入图片描述
在这里插入图片描述

1.6 原始字符串 raw Strings

要输出原始字符串,在反斜杠前再加一个反斜杠,类似此笔记:
在这里插入图片描述
若要输出的东西被误以为是转义字符,只需在输出前加 r 即可:
在这里插入图片描述

?? 反斜杠不可放在字符串末尾!反斜杠放在字符串的末尾,表示还没结束!
在这里插入图片描述
使用三引号,中间可无限换行,替代使用末尾反斜杠。
在这里插入图片描述

1.7 字符串的加法和乘法 Concatenation and multiplication of Strings

与其他语言一样,字符串的加法是拼接
在这里插入图片描述
乘法:可多倍输出

print("Love u 3000 tims everyday\n" * 3000)

在这里插入图片描述

运算符:
> \ < \ == \ >= \ <= \ != \ is \ is not

1.8 循环结构

While 条件:
如果条件为真 (true) 执行这里的语句
在这里插入图片描述

1.9 改进小游戏

"""用python设计一个小游戏"""
"""用python设计一个小游戏"""

import random

counts =3
answer = random.randint(0,10)
while counts > 0:
    temp = input("猜一下心里想的一个数字:")
    guess = int(temp)

    if guess == answer:
        print("yes, 你猜对了!")
        break
    else:
        if guess < answer:
            print("猜小啦")
        else:
            print("猜大啦")
        counts = counts -1
print("game over!")

在这里插入图片描述

在这里插入图片描述
1.使用break语句组织部输入正确后的无效循环。

在这里插入图片描述

2.random函数
使用 import 导入函数
random.randint(m,n) 随机打印 m 到 n 的一个数。
在这里插入图片描述

3.random 随机数重现
使用 random.setstate() 来存储随机数,使用 random.getstate() 来获取随机数。

random.getstate() 只表示取出随机数:
在这里插入图片描述
若先将第一次读取出来的随机数使用 random.setstate()保存起来再读取,便可复现上次的随机数。
在这里插入图片描述
抽奖黑幕系统原理大概如此!

Mac快捷键
Control + P:上一行
学会使用help-- Python Docs进行查找文档

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-03-21 20:45:38  更:2022-03-21 20:47:35 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 19:48:00-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码