# pyGuessGame **Repository Path**: Starrykiller/pyGuessGame ## Basic Information - **Project Name**: pyGuessGame - **Description**: 个人自建-Python Guessing Game - **Primary Language**: Python - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pyGuessGame ## Sources: 源代码 ## Releases: Windows exe #### 介绍 个人自建-Python Guessing Game 本人小学生,纯属练练手,请勿喷 # 注意事项 **支 支持Python3.8+** (因为使用了Python3.8的f-string "{value=}"特性 [详见:f-string示例]), **必须安装colorama库。** Windows release使用pyinstaller打包。 在Windows 10、Ubuntu 20.04 LTS、Fedora 32、OpenSUSE Tumbleweed下测试通过。 # f-string示例 ``` #! /usr/bin/python3.8 # -*- Coding: utf-8 -*- b = True s = "Hi, World!" # f-string的特性1 (Python3.7+) print(f"{b}, {s}") # 输出 True, Hi, World! # f-string的特型2 (Python3.8+) print(f"{b=}, {s=}") # 输出 b=True, s=Hi, World! ```