资源简介
关于Python的小例子,适合Python初学者
代码片段和文件信息
import random
def roll_dice(numbers=3 points=None):
print(‘<<<<< ROLL THE DICE! >>>>>‘)
if points is None:
points = []
while numbers > 0:
point = random.randrange(17)
points.append(point)
numbers = numbers - 1
return points
def roll_result(total):
isBig = 11 <= total <=18
isSmall = 3 <= total <=10
if isBig:
return ‘Big‘
elif isSmall:
return ‘Small‘
def start_game():
amount=1000
while amount>0:
print(‘<<<<< GAME STARTS! >>>>>‘)
choices = [‘Big‘‘Small‘]
your_choice = input(‘Big or Small :‘)
if your_choice not in choices:
print(‘Invalid Words‘)
start_game()
else:
bet=int(input(“how much you wanna bet ? -“))
points = roll_dice()
total = sum(points)
youWin = your_choice == roll_result(total)
if youWin:
print(‘The points are‘points‘You win !‘)
amount+=bet
print(“you gained “+str(bet)+“you have “+str(amount)+“ now.“)
else:
print(‘The points are‘points‘You lose !‘)
amount-=bet
print(“you lost “+str(bet)+“you have “+str(amount)+“ now.“)
else:
print(“GAME OVER!“)
start_game()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1429 2021-01-27 20:33 Python例子\bet.py
文件 466 2020-11-18 17:36 Python例子\GUI图形.py
文件 244 2020-11-22 11:25 Python例子\print_money.py
文件 324 2020-11-21 10:23 Python例子\九九乘法表.py
文件 188 2020-11-21 11:13 Python例子\倒计时显示.py
文件 454 2021-01-27 18:20 Python例子\写入文本.py
文件 156 2021-01-27 18:15 Python例子\创建文本文档.py
文件 416 2020-12-02 14:05 Python例子\判断是一年中的第几天.py
文件 270 2021-01-13 19:40 Python例子\求π.py
文件 1189 2021-01-21 20:33 Python例子\猜大小.py
文件 161 2020-12-02 14:30 Python例子\裴波那契数列.py
文件 332 2021-01-21 19:43 Python例子\计算复利.py
文件 105 2021-01-10 15:27 Python例子\调用函数.py
文件 935 2020-11-21 18:05 Python例子\输入名字并输出.py
文件 105 2020-12-03 08:36 Python例子\逆序输出.py
文件 358 2020-11-24 13:11 Python例子\逢7的倍数跳过.py
目录 0 2021-03-02 16:34 Python例子
----------- --------- ---------- ----- ----
7132 17
相关资源
- A Byte of Python(简明Python教程)(第
- Python 人脸识别
- Python 人事管理系统
- 15个pyqt5项目
- 基于python-flask的个人博客系统
- 计算机视觉应用开发流程
- python 调用sftp断点续传文件
- python socket游戏
- 基于Python爬虫爬取天气预报信息
- python函数编程和讲解
- 顶点小说单本书爬虫.py
- Python开发的个人博客
- 基于python的三层神经网络模型搭建
- python实现自动操作windows应用
- pyqt5动态加载ui文件,动态加载背景图
- python人脸识别(opencv)
- python 绘图(方形、线条、圆形)
- 记事本简洁版.py
- python疫情卡UN管控
- python 连连看小游戏源码
- 基于PyQt5的视频播放器设计
- 一个简单的python爬虫
- csv文件行列转换python实现代码
- Python操作Mysql教程手册
- Python Machine Learning Case Studies
- python获取硬件信息
- 量化交易(附python常见函数的使用方
- python 名字用字排行
- Python串口通信(pyserial)
- python读取nfc卡
评论
共有 条评论