likes = 9999
print(f"A like if you love learning python with grepper. Likes:{likes}")
#or
print("A like if you love learning python with grepper. Likes:" + likes)
#or
print("A like if you love learning python with grepper. Likes:", likes)
# You can use ' or "
# Print a text string in JavaScript
print('My text')
# Print a variable in JavaScript
my_variable = str('Text')
print(my_variable)
# Print a number in JavaScript
print(123)
print('hello world') #print can write a string a number or a variable
#for example you can 'print' a number
print(1) #if you want to print a number you can print it without '' or ""
#we can print a variable
string = 'hi'
print(string) #if you want to print a variable you can print it without '' or ""
print("Type you'r string here!")
# String is something that is in 2 of "" this is called string
# Print function runs the function to print text in python
# You type print() first
# Give it "" double quotes
# Type whatver you want to print in that double qoutes