# -- coding: utf-8 --
#
# import math
from math import floor #从包中调用某个函数,可以直接使用该函数
from math import sqrt
a=int(1/2);b=float(1/2);print(a,b)
c=8//3;print(c) #双斜线 执行整除
d=5%2;print(d) #取余
e=2**3;print(e) #幂
# a=input("The meaning of life:");print(a)
b=pow(5,3);print(b)
c=32.9;c=floor(c);print(c) #floor函数取整
d=sqrt(4);print(d) #sqrt函数求平方根
print("hello world")
print('"Hello World ",She said')
temp=42.55
print('the number is:',temp)
print(str(temp))
print(repr(45.66))
print('hello nworld') #n 换行
path=r'D:/Data'
print(path)
print("第一章:基础知识(完)")