鱼C论坛

 找回密码
 立即注册
查看: 2002|回复: 1

[学习笔记] 003 用Python设计第一个游戏

[复制链接]
发表于 2022-12-4 17:19:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 AhrimanSefid 于 2022-12-4 17:31 编辑

001 小游戏代码 Shut up & Code
"""用Python设计第一个游戏"""

temp = input("不放猜一下小甲鱼心里想的是哪个数字:")
guess = int(temp)

if guess == 8:
    print("你是小甲鱼心里的蛔虫嘛?!")
    print("哼,猜中了也没有奖励!")
else:
    print("猜错啦,小甲鱼心里想的是8!")

print("游戏结束,不玩啦^_^")
完成后按下快捷键 CTRL+S 保存并按 F5运行

002 程序功能 Functions
  • 让用户输入一个数字,如果该数字为8,那么在屏幕上显示一些文本;如果用户输入的不是8,就会显示另一行文本,最后显示“游戏结束”的信息。


003 问题推测 Questions
  • 标点符号必须全部都为英文标点符号
    因为从大体上来说,99.99% 的编程语言只支持英文的标点符号。
    解决方法:在 Options -> Configure IDLE -> Fonts/Tabs 设置字体字号,让全角的标点符号和半角的标点符号区别大一些。要设置成等宽字体(Monospaced Font,也就是字符宽度相同的计算机字体),推荐 Consolas。
  • 缩进必须全部正确(我踩的是这个雷)
    因为缩进是 Python 的命,不正确的缩进会导致程序无法正常运行。如果缩进错误的话(哪怕多加一个空格),会报错 Expected an indented block。
    解决方法:在需要缩进是按一下 Tab 自动缩进就行了。
  • 函数拼写必须全部正确
    像 print() 一类的函数被称为BIF,如果想在屏幕上显示“小甲鱼是乌龟吗?”这个文具,只需要输入 print("小甲鱼是乌龟吗?") 就行了。但是如果函数名称输入错误的话, Python 就无法识别内置函数了。
    解决方法:没有办法,只能输入的时候注意一点,多打几次就习惯了。


004 扩展 More
print() 函数:用于在控制台上输出显示信息
小甲鱼扩展阅读见 https://fishc.com.cn/forum.php?m ... peid%26typeid%3D768

input() 函数:用于在屏幕上询问一条信息并等待用户回应
小甲鱼扩展阅读见 https://fishc.com.cn/forum.php?m ... peid%26typeid%3D768

int() 函数:用于把一些数据从其他类型转换为整数类型
小甲鱼扩展阅读见 https://fishc.com.cn/forum.php?m ... peid%26typeid%3D768

dir(__builtins__):用于把所有的函数都列出来
运行实况:
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BaseExceptionGroup', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EncodingWarning', 'EnvironmentError', 'Exception', 'ExceptionGroup', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'aiter', 'all', 'anext', 'any', 'ascii', 'bin', 'bool', 'breakpoint', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']
如果我没有数错的话,显示出来一共有158个BIF。这些函数各有各的功能,前提是要输入正确。

005 思维导图 Picture

                               
登录/注册后可看大图


希望能够帮到大家

评分

参与人数 2荣誉 +8 鱼币 +8 贡献 +5 收起 理由
漫星闪 + 3 + 3 + 2
asky533 + 5 + 5 + 3 感谢楼主无私奉献!

查看全部评分

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-12-30 13:59:30 | 显示全部楼层
1.看头像给的评分
2.排版不错,不像我当时乱排的:https://fishc.com.cn/forum.php?m ... =1994&fromop=my
3.很详细,思路清晰,我先学走喽,下次用
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 17:17

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表