#๐ annoying autocomplete
13 messages ยท Page 1 of 1 (latest)
@edgy charm
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
Is it VS Code? Is Copilot enabled?
yeah its vs code, and the copilot extension is enabled
Disable copilot
okay
There is also intellisense that might provide inline recommendations too
!d csv Btw, to write csv, use the csv module. You don't have to manually write the fields and commas, you don't have to bother with quoting long fields (that may contain commas) yourself... And so on ๐
Source code: Lib/csv.py
The so-called CSV (Comma Separated Values) format is the most common import and export format for spreadsheets and databases. CSV format was used for many years prior to attempts to describe the format in a standardized way in RFC 4180. The lack of a well-defined standard means that subtle differences often exist in the data produced and consumed by different applications. These differences can make it annoying to process CSV files from multiple sources. Still, while the delimiters and quoting characters vary, the overall format is similar enough that it is possible to write a single module which can efficiently manipulate such data, hiding the details of reading and writing the data from the programmer.
This help channel has been closed. Feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.