fix: 增加日记记录

This commit is contained in:
2023-06-13 16:37:18 +08:00
parent a4a8110c2b
commit 4a0eed5453
49 changed files with 7920 additions and 20 deletions
+1
View File
File diff suppressed because one or more lines are too long
+1
View File
File diff suppressed because one or more lines are too long
+11
View File
@@ -0,0 +1,11 @@
a = 10
b = 0b10
c = 0o10
d = 0x10
e = 1.0
print(a)
print(b)
print(c)
print(d)
print(e)