migration from cloud service
This commit is contained in:
12
week3/ex2.py
Normal file
12
week3/ex2.py
Normal file
@@ -0,0 +1,12 @@
|
||||
def main():
|
||||
list = ['My', 'Name', 'Is', 'James']
|
||||
|
||||
print('==Exercise 2==')
|
||||
print(f'Raw print: {list}')
|
||||
print(f'Spaced print: {list}',sep=" ")
|
||||
print(f'stared print: {list}',sep="**")
|
||||
print('==End Of Ex2==')
|
||||
return 0
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user