Skip to content

Commit 06c2b28

Browse files
author
hussienalrubaye
committed
objects
1 parent e2411d7 commit 06c2b28

File tree

5 files changed

+146
-21
lines changed

5 files changed

+146
-21
lines changed

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+120-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
3+
4+
5+
def main():
6+
print("hello from python")
7+
print("next line execute")
8+
9+
10+
11+
if __name__ == '__main__':main()

objects.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
Name="hussein"
3+
print(Name,type(Name))
4+
Age=22
5+
print(Age,type(Age))
6+
Slary=12544.5
7+
print(Slary,type(Slary))

welcome.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
x=5;
2-
y=8;
3-
print(x)
4-
print('welcome to python');
1+
2+
print('welcome to python')

0 commit comments

Comments
 (0)