Quick actions

cmd+k|ctrl+k

Navigation

Languages

PythonValuesVariables

Snippet info

Language

Python

Visibility

public

Author

masterhun

Created

2023-09-22T18:38:20.23571Z

Updated

2023-09-22T18:38:22.728432Z



"""

This is a docstring.

Or a multi-line comment.

Topic: Values & Variables 

Integer, float, string, Boolean


"""


string_variable = "ABSTRACTION"

integer_variable = 52

boolean_variable = True

float_variable = 5.65

print(string_variable)

print(integer_variable)

print(boolean_variable)

print(float_variable)

print()

egg = 3 

ham = 5
 
print(egg)

print(ham)

egg = ham 

print(egg)

print(ham)

print()

name1 = "Ryan"

print(name1)

name2 = "Jason"

print(name2)

print()

name1 = name2

print(name1)

print(name2)



# This is a single-line comment.
# THE END 

INFO