Answers for "print(*"

5

How print ?

#def test
print("Hello, world!") #for text
print(test) #for variable
print("Hello,", test) # for text + variable
Posted by: Guest on February-17-2021
0

print()

The print() function will print out whatever you want.
The print will go to the output.
Posted by: Guest on January-30-2021
0

print(' *') print(' ***') print('****') print('*****') print(' ***')

print('   *')
print('  ***')
print('****')
print('*****')
print('  ***')
Posted by: Guest on May-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language