摘要:
1. 题目 2. 代码 class Restaurant(): def __init__(self, restaurant_name, cuisine_type): self.restaurant_name = restaurant_name self.cuisine_type = cuisine_ 阅读全文
摘要:
转载: 《Python编程:从入门到实践》课后习题及答案-码农之家 (xz577.com) 《Python编程:从入门到实践》课后习题及答案 - 信德维拉 - 博客园 (cnblogs.com) 阅读全文
摘要:
1. 动手试一试 2. 代码 class Restaurant(): def __init__(self, restaurant_name, cuisine_type): self.restaurant_name = restaurant_name self.cuisine_type = cuisi 阅读全文
摘要:
1. 代码 from sys import exit # 定义黄金屋函数 def gold_room(): print("This room is full of gold. How much do you take?") next = input(">") if "0" in next or "1 阅读全文
摘要:
1. 报错如下: SyntaxError: Non-UTF-8 code starting with '\xd3' in file D:\流畅学python\ex34.py on line 4, but no encoding declared; see http://python.org/dev/ 阅读全文
摘要:
问题:在复制一些代码时会同时复制每行的行号,删除比较麻烦,所以利用python3本身的代码进行一键删除。 # 导入re 模块来使用正则表达式 import re """去掉行号""" print('remove application start') # 定义去除行号函数 def remove_li 阅读全文
摘要:
解决方法:选择Terminal中输入执行ex13.py 1 2 3 执行结果如下图 阅读全文
摘要:
https://blog.csdn.net/qq_43433255/article/details/90212744 阅读全文
摘要:
python pip使用国内镜像安装第三方库:命令行或PyCharm 转载: https://blog.csdn.net/lly1122334/article/details/80646996 阅读全文
摘要:
1. 问题描述: pycharm安装第三方库时提示CondaHTTPError: HTTP 000 CONNECTION FAILED。 2. 错误原因:默认镜像源访问速度过慢,会导致超时从而导致更新和下载失败。 3. 解决方案:更换镜像源为清华镜像源,并且删除默认镜像源。 3.1.首先执行如下几条 阅读全文