Python基础(1)_语句和模块初识

一、语句和表达式

1.加减乘除以外主要记忆:

/ 表示带小数的一般除法
// 整除  <--向下取整,取小的-->
% 取余  <--都是负数正常取余,一负一正按照 a-b*[a//b] -->
** 次方

2.二进制, 八进制, 十六进制表示初识 <-- 均以0开头,二进制b,八进制o,十六进制x -->

二、模块和函数初识

import math,cmath

from math import sqrt

math.ceil(32.5) *向上取整

math.floor(33.4) *向下取整

math.sqrt(4) *开方

cmath.sqrt(-1) ==>1j *cmath用于处理复数

math.pow(4,3) *次方,4的3次

三、字符串初识

1.引号的使用*单引号双引号一定要交替使用*使用同一种引号,则相邻的要转义

print('let\'s do it') 

2.转义字符

3.str和repr以及单纯打印

print(repr("Hello,\nworld")) *会将转义字符一起输出,不会产生换行效果

print(str("Hello,\nworld")) *和一般的print一样,会将转义的效果打印出来

4.原生字符串

print(r'Hello,\nworld') 输出原始文本
==》Hello,\nworld

5.编码解码

A="hello".encode("ASCII") *编码

print(A) ==>A=b'hello'

print(A.decode("utf8")) *解码

你可能感兴趣的:(Python基础(1)_语句和模块初识)