TAILIEUCHUNG - Dive Into Python-Chapter 2. Your First Python

Tham khảo tài liệu 'dive into python-chapter 2. your first python', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Chapter 2. Your First Python Program You know how other books go on and on about programming fundamentals and finally work up to building a complete working program Let s skip all that. . Diving in Here is a complete working Python program. It probably makes absolutely no sense to you. Don t worry about that because you re going to dissect it line by line. But read through it first and see what if anything you can make of it. Example . If you have not already done so you can download this and other examples used in this book. def buildConnectionString params Build a connection string from a dictionary of parameters. Returns string. return .join s s k v for k v in if __name main__ myParams server mpilgrim database master uid sa pwd secret print buildConnectionString myParams Now run this program and see what happens. i In the ActivePython IDE on Windows you can run the Python program you re editing by choosing File- Run. Ctrl-R . Output is displayed in the interactive window. In the Python IDE on Mac OS you can run a Python program with Python- Run window. Cmd-R but there is an important option you must set first. Open the .py file in the IDE pop up the options menu by clicking the black triangle in the upper-right corner of the window and make sure the Run asmainoption is checked. This is a per-file setting but you ll only need to do it once per file. i On UNIX-compatible systems including Mac OS X you can run a Python program from the command line python odbchelper. py The output of will look like this server mpilgrim uid sa database master pwd secret . Declaring Functions Python has functions like most other languages but it does not have separate header files like C or interface implementation sections like Pascal. When you need a function just declare it like this def buildConnectionString params Note that the keyword de f starts the function declaration followed by the function name followed by .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.