Answers for "variable in print"

1

print make variables

$(error   VAR is $(VAR))
$(warning VAR is $(VAR))
$(info    VAR is $(VAR))
Posted by: Guest on April-15-2020
0

print variable python

str1 = "Hello World"
print(str1)
Posted by: Guest on November-29-2019
0

python how to print variable value

pythonCopyvar1 = 123
var2 = 'World'
print("Hello to the",var2,var1)
Posted by: Guest on July-27-2021

Browse Popular Code Answers by Language