60.2k views
2 votes
What do you type when you are coding with python

1 Answer

4 votes

Answer:

When coding in Python, you type Python code using a text editor or an integrated development environment (IDE). Here's a simple example of Python code to print "Hello, World!":

print("Hello, World!")

You write Python code in plain text files with the ".py" extension. You can use various code editors like Visual Studio Code, PyCharm, or even a simple text editor like Notepad to write Python code.

User Ron Gilchrist
by
8.4k points