美文网首页
python print 和 import

python print 和 import

作者: zenos876 | 来源:发表于2019-09-24 23:42 被阅读0次

1. print

# 打印多个表达式
print('Age: ', 42)

# 自定义分隔符
print('I', 'wish', 'to', 'register', 'a', 'complaint', sep='_')

# 自定义的结束字符串
print('Hello, ', end='')
print('world')
Age:  42
I_wish_to_register_a_complaint
Hello, world

2. import

# 基本导入
import math
from math import e
from math import sin, cos, tan
from math import *

# 指定别名
from math import sin as si

相关文章

网友评论

      本文标题:python print 和 import

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