# there is no such data type thing that you have to declare in Python


# You may not see this line in programming.



"""

whatever I input between two set of three quotes, it would be not printed on screen. It is just ignored.

"""


"""

adfasfafdasdfasdfasdfasdfasdf

"""


# code after "#" would be ignored too

# asdfasdfasdfas

# asdfasdfasdfasdf

## asdfasdfasdfasdf


-------------

#Now let us expect what this programming code print out !

print(" We are learning Python ! ")

# print("We are having fun ! ")

"""

print("We would like to drink ")

"""

-------------

Q. What code above will print out ?

Answer : We are learning Python ! 


#Have a nice day everybody. (this is a single line comment)

"""

asdf

""" ( we call it multi-line comment)


'Study > Python' 카테고리의 다른 글

Hello World Python !  (0) 2018.10.06

print(Hello World ! Python ! )


s = "Hello World Python ! ")


print("{ }".format(s))



Unlike other programming languages, Python does not require semicolon and specific data type declaration. Python has a lot more easier tools than any other programming languages. The biggest good point of Python is it is free and fast.

We have just learned how to use print in Python. Hope to see you again at my blog anytime you want ! FAIR ENOUGH. See you again.

'Study > Python' 카테고리의 다른 글

[Python] comment  (0) 2018.10.06

+ Recent posts