X Tutup
Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Attack on Python - 基础篇 🐍

前言

基础篇中的内容 , 应对的是 Python 的基础语法 , 以及基础数据类型的文章

在开始之前 , 你可以熟悉一下 Python 的语言参考 : The Python Language Reference

最好的教程就是官方文档 , 所以阅读官方文档是一个好的学习习惯

介绍

Python基础主要包括基础语句 , 基础数据类型 , 字符编码 , 文件操作等

基础语句

  • Hello World
  • 变量
  • 行和缩进
  • 多行语句
  • 注释
  • input
  • print
  • 数据运算
  • 条件语句
  • for
  • while

数据类型

  • 数字 , Number
  • 字符串 , String
  • 元组 , Tuple
  • 列表 , List
  • 字典 , Dictionary
  • 集合 , Set
X Tutup