本篇文章主要涉及内容索引

      1、编辑创建自己的Python模板
      2、print()函数
      3、转义字符
      4、标识符和保留字
      5、变量的定义和使用
      6、数据类型及运算和转换
      7、注释
      8、input()函数
      9、Python中的运算符
      10、对象的布尔值

文章正文部分

python官方手册 python3.9手册_Python3.9


print(291.299)
print('hello world')
print(291+299)
fp = open('E:/Python_text.txt', 'a+')
print('Dear X2 : It seems that I am getting to like you. ', file=fp)
fp.close()

python官方手册 python3.9手册_Python3.9_02

print('hello', 'X', '2')
hello X 2

print('hello\nworld')
hello
world
print('hello\tworld')
hello	world
print('hello\rworld')
world
print('hello\bworld')
hellworld
print('\\\\')
print('\'')
\\
'
print(r'hello\nworld')
hello\nworld

import keyword
print(keyword.kwlist)
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']

time = 11.30
print('标识:', id(time))
print('类型:', type(time))
print('值:', time)
标识: 1748693970512
类型: <class 'float'>
值: 11.3

python官方手册 python3.9手册_python官方手册_03

x1 = 1.1
x2 = 2.2
print(x1+x2)
3.3000000000000003
from decimal import Decimal

print(Decimal('1.1') + Decimal('2.2'))
3.3
str1 = """嗨,你在干嘛呢"""
str2 = """嗨,
你在干嘛呢"""
str3 = '''嗨,
你在干嘛呢'''
嗨,你在干嘛呢
嗨,
你在干嘛呢
嗨,
你在干嘛呢

python官方手册 python3.9手册_python_04

age = 20
print('我来自中国,今年' + str(age) + '岁了')
我来自中国,今年20岁了
get_date = input('请输入你最喜欢的数字:')
print(get_date)
请输入你最喜欢的数字:  9(这个9是输入的)
  9
get_date = int(input('请输入你最喜欢的数字:'))
get_date2 = int(input('请输入我最喜欢的数字:'))
print(get_date+get_date2)
请输入你最喜欢的数字:9
请输入我最喜欢的数字:6
15
print(99/2)
print(99//2)
print(99%2)
print(2**10)
49.5
49
1
1024
print(-9//2)
-5
print(-9 % 2)
print(9 % -2)
1
-1
print(-9 % 2)
print(9 % -2)
1
-1
a=b=c=20
print(a,b,c)
20 20 20
a,b,c=20,30,40
print(a,b,c)
20 30 40
a,b=20,30
print(a,b)
a,b=b,a
print(a,b)
20 30
30 20
a,b=20,30
print(a>20)
False
a=10
b=10
print(a==b)
print(a is b)
True
True
a=True
print(not a)

b='hello GLY'
print('e' in b)
print('GLY' in b)
print('a' in b)
False

True
True
False
a=48
b=25
print(a|b)
print(a<<1)
57
96

python官方手册 python3.9手册_Python3.9_05


python官方手册 python3.9手册_Python3.9_06



print(bool(0))
print(bool(1))
False
True