Python基础教程第二版学习记录(一)

第一章 基础知识

  变量:(直接赋值) 

x = 4396

  输入:

input()

    或者

raw_input()  
#尽量使用raw_input(),它保留所有输入,记录成原始数据(raw data)放入字符串中

  模块:

# import 模块
# 例如:
import math 

    或者

# from 模块 import 函数
# 例如:
from math import sqrt

  转义:

\  #反斜线

  str()和repr():

    python中合法的字符串表达式是带有双引号''的,所以repr是将字符串转换为合法的表达式,而str则是将字符串转换为更容易让用户理解的形式,即str是表现给人看的,repr是表现给python看的

>>> print("hello world!")
hello world!

>>> print (str("hello world!"))
hello world!

>>> "hello world!"
'hello world!'

>>> print (repr("hello world!"))
'hello world!'

长字符串换行3种形式

#1
print '''Hello, 
world!'''
#2
print 'Hello, \
world!'
#3
print 'Hello, \n
world'
  


  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值