You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
286 B
20 lines
286 B
# test builtin print function
|
|
|
|
print()
|
|
print(None)
|
|
print('')
|
|
print(1)
|
|
print(1, 2)
|
|
|
|
print(sep='')
|
|
print(sep='x')
|
|
print(end='')
|
|
print(end='x\n')
|
|
print(1, sep='')
|
|
print(1, end='')
|
|
print(1, sep='', end='')
|
|
print(1, 2, sep='')
|
|
print(1, 2, end='')
|
|
print(1, 2, sep='', end='')
|
|
|
|
print([{1:2}])
|
|
|