Python_0

作者: ToM华托福票圈最低 | 来源:发表于2018-08-13 15:57 被阅读0次

Some basic concepts about Python:

  1. Function: Sth. that helps u directly or indirectly achieve some target
  2. DataType: Distinguish elements for different uses
  3. Grammar: Standards for coding
  4. Structure: Logic for coding
  5. Packages: Sth. that provide useful fuxs for u to manipulate

Before coding(Notice & some Grammar):

1. Encoding for Chinese:
#-*- coding:utf-8 -*-

Other Choices: GB2312、GBK、GB18030

2.Path

Ex. for linux

$ PATH=$PATH:/usr/local/python3/bin/python3  
3.Keywords

Python has some keywords that cannot be edited or changed
Ex: False,True,None,and,or,class,if,def,...,etc.

For search:

import keyword
keyword.kwlist
4.Indent 缩进 & Multi-line code

Indent:
Python use indent (TAB) to display code blocks (no use for {})

if True:
    print ("True")
else:
    print ("False")

Multi-line code:
Use " \ " to connect

total = item_one + \
        item_two + \
        item_three
5. Print & Import

Print in Python 3.0:

a="x"
print(a)   #output with "Enter" 换行
print (a,end=" ")    #output with " " 不换行 

Import:
将整个模块(somemodule)导入
从某个模块中导入某个函数
从某个模块中导入多个函数
将某个模块中的全部函数导入
分别对应:

import somemodule
from somemodule import somefunction
from somemodule import firstfunc, secondfunc, thirdfunc
from somemodule import *

相关文章

  • Python_0

    Some basic concepts about Python: Function: Sth. that...

  • Python_0基础:1.注释

    1.1 单行注释 在python中,用 # 表示单行注释 1.2 多行注释 在python中,用 (两个)``` ...

  • Python_0基础:11.异常

    程序在运行过程中,由于我们的编码不规范,或者其他原因一些客观原因,导致我们的程序无法继续运行,此时, 程序就会出现...

  • Python_0基础:9.函数

    思考:下列代码的问题 一、定义函数 定义函数的格式如下: 很多重复的业务逻辑,重复出现的时候,我们可以使用函数 示...

  • Python_0基础:10.文件

    一、文件的打开与关闭 打开文件/创建文件 在python,使用open函数,可以打开一个已经存在的文件,或者创建一...

  • Python_0基础:4.类型转换

    函数说明int(x)将x转换为一个整数float(x)将x转换为一个浮点数str(x)将x转换为字符串bool(x...

  • Python_0基础:5.运算符

    一、算数运算符 下面以a=10,b=20为例进行计算: 运算符描述实例+加两个对象相加 a + b 输出结果 30...

  • Python_0基础:6.输入输出

    一、输出 普通输出 格式化输出 scrapy框架的时候 excel mysql redis 想一想: 在输出名...

  • Python_0基础:8.数据类型高级

    一、字符串高级 字符串的常见操作包括: 获取长度:len ...

  • Python_0基础:7.流程控制语句

    一、if if语句是用来进行判断的,其使用格式如下: demon_1 demon_2 小总结: if判断语句的作用...

网友评论

    本文标题:Python_0

    本文链接:https://www.haomeiwen.com/subject/ycsubftx.html