Answers for "print(*a) in python"

1

print python

#try it :)
print("Hello, world!")

#or 

#you can print variable
name = "Harry"
print(name)


name = "Harry";print(name) #all on the same line
Posted by: Guest on September-17-2020
0

print in python

print("Hey! How are you doing?")

## formatted string literal
answer = "Well!"
print(f"Hey! How are you doing? {answer}")
Posted by: Guest on May-23-2021
1

print in python

def i_will_print_with_a_diffrent_function(x):
  print(x)
i_will_print_with_a_diffrent_function("my name")
Posted by: Guest on January-12-2021
4

how to print in python

'''
print - > this is a statement
use brackets and quotation marks ("") or ('')
whatever you want to say put in the brackets
'''
print("Hello World")
Posted by: Guest on May-05-2020
0

print in python

# This prints out the value provided by the user

print("Hello World\n")
Posted by: Guest on December-14-2020
0

python print

print("Hello, World!")
Posted by: Guest on April-26-2020

Browse Popular Code Answers by Language