# Printing, the basics of Python...
# Btw this is how you print a statement or anything in the terminal/console.
print("your printing statement")
# Above basically makes use of a built-in function called print which just
# shows your writing in the console. You can print variables also using print.
# Very easy to use. Hope I helped. Thanks!
# By Codexel (yea, i changed my username AGAIN...)
'''
print()inside the parentheses put a single colon or double colon
'''
# example like this
print("this how you use print statement")
# or like this
print('other way to print in python')
#please use the print keyword
print()
#pleease enter the value to print
print(1)
# if integers means you can use without single quotes or double quotes or triple quotes
print("nidhsih")
#one of the advantage of python you didn't want to use semi-colon in the end of the statements
#('') a string, to indicate it is a string you can use ("") or ('')
print("hello world")
#a integer
print(19)
# a float:
print(4.5)
# a bool:
print (True)
print (False)
#printing inputs
print(input("whatever u want to say "))
#or u can use preloaded inputs
input_value=input("whatever u want to say ")
print(input_value)
Python:
#Variables
action = 'vote a like'
goodbyeMessage = 'Goodbye!'
#Prints:
print('Welcome to a game!')
print('Do not forget to ', action + ', alright?')
print(str(goodbyeMessage))
JavaScript:
'Variables:'
var a = 'Hello again!'
var b = '!'
'Prints(logs):'
console.log('Hi!')
console.log(a)
console.log('Hello' + b)