-
Notifications
You must be signed in to change notification settings - Fork 0
Pydroid #2
Copy link
Copy link
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Integer
integer_example = 42
print(f"Integer: {integer_example}")
Float
float_example = 3.14
print(f"Float: {float_example}")
String
string_example = "Hello, World!"
print(f"String: {string_example}")
Boolean
boolean_example = True
print(f"Boolean: {boolean_example}")
List
list_example = [1, 2, 3, 4, 5]
print(f"List: {list_example}")
Tuple
tuple_example = (1, 2, 3, 4, 5)
print(f"Tuple: {tuple_example}")
Set
set_example = {1, 2, 3, 4, 5}
print(f"Set: {set_example}")
Dictionary
dict_example = {"name": "Alice", "age": 30, "city": "Wonderland"}
print(f"Dictionary: {dict_example}")
NoneType
none_example = None
print(f"NoneType: {none_example}")