Skip to content

Commit a5f3789

Browse files
Create HelloWorld.py
1 parent 0c50222 commit a5f3789

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

HelloWorld.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import sys
2+
3+
4+
def main():
5+
x = 1
6+
x = x / 0
7+
print(f'X = {x}')
8+
9+
10+
11+
if __name__ == '__main__':
12+
main()

0 commit comments

Comments
 (0)