18 lines
346 B
Python
18 lines
346 B
Python
# -------------------------------
|
|
# Difficult Rocket
|
|
# Copyright © 2021-2022 by shenjackyuanjie 3695888@qq.com
|
|
# All rights reserved
|
|
# -------------------------------
|
|
|
|
from build import pycprint
|
|
|
|
pycprint.print("a啊a\n")
|
|
|
|
pycprint.printf("a啊a\n", "aaa", "aaa", end='')
|
|
|
|
print()
|
|
|
|
pycprint.printf()
|
|
|
|
pycprint.printf("aaa\n", "aaa", "aaa")
|