mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
6acc0f9ecd
* test for format with tuple is ok * 'format'%var is ok (tuple var is not ok) * rename _cformat to cformat() * optimize the memory usage of format_list * add string-test.cpp * cformat() is ok * fix variable par load issue * use test_common.h * use test_common to simplify the gtest case * Merge branch 'master' into dev * fix float->double for bytecodegen * update to /package * Use double in C for float in python
7 lines
135 B
Python
7 lines
135 B
Python
import PikaStdLib
|
|
|
|
print('test')
|
|
print('my name is', 'old wang', 'my age is', 43)
|
|
print('format: %s,%04d,%.2f' % ('test', 123, 15.5))
|
|
|