Question: Practice Exercises: 1 . Create a new folder called software 1 0 1 . Click here for Hint 2 . In it , create

Practice Exercises:
1.Create a new folder called "software101".
Click here for Hint
2. In it, create a new file called software.py.
Click here for Hint
3. Write code to print software engineering is awesome.
Click here for Hint
Write a code to print the message: software engineering is awesome.
Click here for Solution
Paste the code below to the software.py file and save it using Ctrl+S.
1
2
message= "software engineering is awesome"
print(message)
Copied!
4. Run the program.
Click here for Solution
Run the program in the terminal using the below command:
1
python3 software.py
Copied!Executed!
5. Edit the software.py file and make s & e in software engineering is awesome to uppercase.
Click here for Solution
Change the message from software engineering is awesome to Software Engineering is awesome in software.py.
6. Run the update file.
Click here for Solution

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!