IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 暑期(1) -> 正文阅读

[Python知识库]暑期(1)

前言

暑期计划了很多东西,其中大部分是不适合通过博客记录的。博客能记录的只有Python、单片机和一些英语知识了。
其中,不打算在暑假认真钻研Python和单片机。英语知识也不如放进Anki里面记忆。博客约等于朋友圈文案了。

本次尝试制作英美音乐与文化的笔记,但是效果不太好
这个课真的非常值得看,可惜本人记不住那么多人名、歌名 😦 只能走马观花地了解一下那些蕴含在音乐中的故事了)

英美音乐TOPIC 1:

NEW WORDS:

respository 储存库、资料库
module 模块,组件
second-nature 第二天性,老习惯
forefront 最前线,最前部;活动的中心;(思考、关注的)重心
rote learning / memorization 死记硬背
arguably 可以说,按理说
colloquialism 名词;俗话,白话

punk rock 朋克摇滚乐
reggae 雷鬼音乐
Hip Hop 嘻哈音乐
Alternative Rock 另类摇滚
R&B 节奏蓝调
Indie Rock 独立摇滚
Heavy Metal 重金属

breed :a sort or kind of person or thing
mega-star 巨星
fused with 融合
single 单曲
Platinum 白金;铂金奖

Intro 前奏
Verse 副歌
Chorus 诸葛


NICE EXPRESSION:

As the song goes
如歌词所说

When you’re free in your mind, nothing will worry you

Analogically, …
类比来说,…

The 1980’s witnessed a new breed of mega-stars

Some of the superstars to emerge were Madonna, Michael Jackson and Whitney Houston.

start with pop music, then branch out.
从…开始,然后拓展(音乐风格)

Trends and Events in Music

British Invasion

Interesting Topic:

How Does Culture Relate to Music

Culture shapes and defines music
Culture is the insert repository of ideas and customs
Music is an important part of culture
Music helps us know other cultures
Music is a bridge between cultures

What is culture

As we know, culture is the way we do things around us
It affects us all no matter where we live or what we do

Music as Culture

Music is a key component in any kind of culture
It’s a way to express the ideas and beliefs of that culture

Learn Language through Music

  1. Pick music you love
  2. Find music that uses the right language
  3. Find songs that tell stories
  4. Take some time to digest the lyrics and their meanings
  5. Sing from memory

Python

1.注释

# 单行注释
'''
块注释
'''
"""
块注释
"""

算数运算符

// 取整除 # 9//2 = 4
/# 10/20 = 0.5
**# 2**3 = 8
*+ 可用于字符串

变量类型

复数型(complex)
列表、元组、字典
type()得到类型 python3.0整形都为int

强制转换:int(x),float(x)

输入输出

输入
input("请输入银行密码")
所有的输入都是字符型

输出
print()
print("格式化字符串" % (变量1, 变量2))
%s 字符串
%d 有符号十进制证书,%06d表示输出显示位数,不足用0补全
%f 浮点数,%.02f表示小数点后只显示两位
%% 输出%

命名规则

推荐命名规则

条件语句

if 条件:
	依靠缩进来表示关系
else 条件:
	

逻辑运算

if a or b:
if a and b:
if not a and not b

if a:
    pass
elif b:
    print(a)

随机数

import random
random.randint(a, b) #a<b

函数

def 函数名():
	"""函数信息"""
	print("你好")
也有函数声明 
函数名()
返回值、形参与C基本一样

列表

a = ["nihao","wozai"]
a.各类方法

放弃系统python

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-08-15 15:29:40  更:2021-08-15 15:31:52 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 10:27:22-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码