Strings
gedit first.py
gedit first.pygedit first.py
gedit first.py&
gedit first.py&
line-by-line explanation of your Python code:

Last updated
gedit first.pygedit first.py
gedit first.py&

Last updated
gedit first.py& #!/bin/python3#print stringprint("Hello,World")print('\n')print('Hello,World')print("""This string runs
multiple lines!""")This string runs
multiple lines!print("This string is "+"awesome!")This string is awesome!#!/bin/python3
#print string
print("Hello,World")
print('\n')
print('Hello,World')
print("""This string runs
multiple lines!""")
print("This string is "+"awesome!"