04-字符串「精卫」

1. 字符串定义

2. 探究单双三引号的作用以及区分

s = 'I'm zhaojinwei'

AI悦创原创...大约 7 分钟1v1Python 1v11v1Python 1v1
03-Question 3 (15 points)

Suppose you implemented a basic (singly) LinkedList class in Python. This Linked ist class contains three attributes, ie., size, head, and tail. This LinkedList can be used to manipulate an unordered list of numeric values, with function insert(self, value, index), remove (self, value, index), traverse (self), is_empty(self), and size (self). The traverse function could print a sequence of values by visiting each node in the Linked ist from head to tail.


AI悦创原创...大约 4 分钟1v1Python 1v1python数据结构与算法一对一辅导1v1Python 1v1python数据结构与算法一对一辅导
02-CISC-235 Data Structures W23「Assignment 2」

Assignment 2

February 14, 2023

General Instructions

一般的用法说明

Write your own program(s) using Python. Once you complete your assignment, place all Python files in a zip file and name it according to the same method, i.e., “235-1234-Assn2.zip”. Unzip this file should get all your Python file(s).


AI悦创原创...大约 7 分钟1v1Python 1v1python数据结构与算法一对一辅导1v1Python 1v1python数据结构与算法一对一辅导
0基础python入门培训

0基础python入门培训

0 基础入门 Python 难在哪里?难在概念理解不透彻,难在无人指导抓不住重点,难在一个人学习缺少计划难以持久,难在遇到问题无人解答耽搁进度。

本人10年编程经验,在线教学收徒已超过百人,有着丰富的教学经验,不同于培训机构里的老师,我仍然在职工作,技术水平保持在业界最高水准。

历经一年潜心研究和实践经验总结,编制出一套0基础python入门课程,专门为初学者设计,本课程有以下优点:

  1. 使用最通俗的语言讲解最专业的知识和概念
  2. 示例丰富可供学习参考,大量练习题可巩固所学
  3. 教学期间,可随时提问交流,答疑解惑,问题不积压,保证学习进度

AI悦创原创...大约 4 分钟Python 1v1Python一对一教学Python一对一辅导Python指导Python辅导少儿编程一对一NOI竞赛辅导Python 1v1Python一对一教学Python一对一辅导Python指导Python辅导少儿编程一对一NOI竞赛辅导
03-个人博客搭建「刘奕彤」

1. 域名购买

  1. 谷歌域名:https://domains.google.com/

2. 网站环境搭建


AI悦创原创...大约 3 分钟Python 1v1前端一对一少儿编程一对一Python 1v1前端一对一少儿编程一对一
01-Answer1

AI悦创原创...大约 24 分钟1v1Python 1v1python数据结构与算法一对一辅导1v1Python 1v1python数据结构与算法一对一辅导
01-CISC-235 Data Structures W23「Assignment 1」

Assignment 1

January 14, 2023

General Instructions

一般的用法说明

Show your solution steps with your findings to the questions in a pdf file named “235-1234-Assn1.pdf”, where 1234 stands for the last 4 digits of your student ID. If you cannot save your file as pdf, you may save it and submit it as a Word document and name it “235-1234-Assn1.docx”.


AI悦创原创...大约 11 分钟1v1Python 1v1python数据结构与算法一对一辅导1v1Python 1v1python数据结构与算法一对一辅导
03-数字型「精卫」

1. 分类

In [1]: 1 + 1
Out[1]: 2

In [2]: 1 + 1.0
Out[2]: 2.0

In [3]: 3 - 1
Out[3]: 2

In [4]: 3.0 - 1
Out[4]: 2.0

In [5]: 2 * 3.0
Out[5]: 6.0

In [6]: 2 * 3
Out[6]: 6

In [7]: 9 / 3
Out[7]: 3.0

AI悦创原创...大约 2 分钟1v1Python 1v11v1Python 1v1
04-字符串「明轩」

1. 字符串的定义

image-20230112140211139
  1. 单双引号混用
  2. 三个单引号或者三个双引号都是字符串
s = """再次使用 pip,即会使用新源。 一些常用的国内源:清华大学:https://pypi.tuna.tsinghua.edu.cn/simpleopen in new window阿里云:https://mirrors.aliyun.com/pypi/simpleopen in new window中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simpleopen in new window豆瓣:http://pypi.douban.com/simpleopen in new window# 第二种方法
------
著作权归黄家宝|AI悦创所有
原文链接:https://bornforthis.cn/posts/16.html#%E7%AC%AC%E4%B8%80%E7%A7%8D%E6%96%B9%E6%B3%95"""
print(s)

AI悦创原创...大约 2 分钟1v1Python 1v1少儿编程一对一1v1Python 1v1少儿编程一对一
2
3
4
5
...
8