Python每日一练---1.基本语法(导包,输入输出)

1.长整数(过长时以L结束)

>>>234423234223243L
2. 变量名

字母数字,下划线(不能以数字开头)

3.注销 #

4.打印

print 2*2; print(2*2)

字符串:print("hellopyhon")// print 'hellopython'

5.输入

x=input("x:") #默认标准表达式或者数字

raw_input() #整行输入,字符串

6.if

if 1==2 print' one equals two'

7.API导入

from 包 import 方法名 (from math import sqrt)

使用方式一:

import math
math.floor(32.9)
使用方式二:(cmath不能import)

from math import sqrt
sqrt(9)

8.类型转换

print ‘x=',int(sqrt(9))
9. 输出
多格式

print 'x=',x  #会产生空格

换行 ;\ 连接  (\n产生换行)

print x;\
print y

print''' 123
456
789'''
123
456
789
print r'''dsdfdf
fsdfsd\
dfsdf'''
dsdfdf
fsdfsd\
dfsdf
print '''dsdfdf\
fsdfsd\
dfsdf'''
dsdfdffsdfsddfsdf
print '''dsdfdf\
fsdfsd\n\
dfsdf'''
dsdfdffsdfsd
dfsdf

10.字符串

‘’ “” ''' ''' #这三种都可以定义字符串

print '"hhh"'
"hhh"
11. 了解某个函数

help(raw_input)
12.格式化输出

print(format())

>>> print(format(12.23434),'6.3f')
('12.23434', '6.3f')
>>> print(format(12.23434,'6.3f'))
12.234
>>> print(format(12.23434,'6.9f'))
12.234340000
>>> print(format(12.23434,'6.0f'))
    12
>>> print(format(12.23434,'9.2f'))
    12.23
>>> print(format(12.23434,'3.3f'))
12.234
>>> print(format(0.3456,'.2%'))
34.56%
>>> print(format(0.3456,'3.1%'))
34.6%
>>> print(format(0.3456,'6.1%'))
 34.6%








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值