Skip to content

Commit 48f8df5

Browse files
authoredNov 6, 2024
Add files via upload
1 parent 02566d8 commit 48f8df5

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# First variable assignment
2+
number = 10
3+
print(number)
4+
5+
# Second variable assignment (change the first one)
6+
number = 10.011
7+
print(number)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Assigning multiple values to multiple variables
2+
a, b, c = 10, 10.5, "Hello Python4Delphi!"
3+
4+
print (a)
5+
print (b)
6+
print (c)

0 commit comments

Comments
 (0)