1 Star 0 Fork 0

chengy/python_demo01

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hello.py 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
chengy 提交于 2019-02-15 11:47 . init commit
#!/usr/bin/env python3
print("+"*100)
qq_number = "123455"
qq_passwd = "123"
print(1.01**365)
# abc = input("输入密码:")
#
# print(abc)
#
# print(type(abc))
#
# print(type(int(abc)))
#
# print(type(float(abc)))
name = "chengy"
print("my name is %s" % name)
print('hello,{0},成绩提升了{1:.2f}'.format('chengy',20.1434))
s1 = 72
s2 = 85
r = s2 -s1
print('小明成绩提升的比例为%.1f %%' % r)
student_no = 2;
price = 20
wight = 4;
print("我的学号%06d" % student_no)
print("价格%.3f,重量%.2f" % (price, wight))
scale = 0.25
print("比例%.2f%%" % (scale *100))
print("100 + 200 = ", 100 + 200)
a = 100
if a >= 0:
print(a)
else:
print(-a)
print(r'\b\n\t') #使用r表示''内的字符串不转义
print('''
abc
12,
<code>aaa<code>
''')
print(r'''abc \n
adsf as
line3
''')
print("*" * 50)
if(not True):
print("not True")
else:
print('True')
PI = 3.14159265359
print(10/3)
print(10//3)
print(11 % 3)
# 字符编码
##ASCII编码为1个字节,而UNICODE通常为两个字节(如果为非常偏僻的字符则需要4个字节)
#如果统一都使用UNICODE编码则会造成UNICODE编码比ASCII编码多一倍的空间,UTF8出现了
# (UTF8编码把一个UNICODE字符根据不同的数字大小变成1-6个字节,常用的英文字母被编码
# 成1个字节,汉子通常是3个字节,只有很生僻的字符才会被编码成4-6个字节。如果你要输入
# 的文本包含大量英文字符,用UTF8编码就能节省空间)
#### 在计算机内存中,统一使用Unicode编码,当需要保存到硬盘或者需要传输的时候,就
#### 转换为UTF8编码。 用记事本编辑的时候,从文件读取的UTF-8字符被转换成Unicode
#### 字符到内存中,编辑完成后,保存的时候在把Unicode转换为UTF-8保存到文件。
#为了能让Python解释器按utf-8编码读取,我通常在文件开头协商这两行:
# #!/usr/bin/env python3
# _*_ coding: utf-8 _*_
#ord()幻术获取字符的正数表示,chr()把编码转换为对应的字符.
print('*'*20,'字符编码','*'*20)
print(ord('A'))
print(ord('中'))
print(chr(25991))
print("16进制表示:", '\u4e2d\u6587')
print('*'*20,'展示所有ascii码','*'*20)
i = 255;
while i>0:
print(i,':',ord(i))
i = i-1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/nocoding/python_demo01.git
[email protected]:nocoding/python_demo01.git
nocoding
python_demo01
python_demo01
master

搜索帮助