You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_print.py 132 B

3 years ago
12345678
  1. from fastNLP import print
  2. def test_print():
  3. print("a")
  4. print([1, 2, 3])
  5. print([1,2,3], [4,5,6], 'a')
  6. print(print)