G

Untitled

public
Guest Aug 13, 2024 Never 112
Clone
Plaintext paste1.txt 66 lines (54 loc) | 3.16 KB
This code is a simple Python script that prints out a questionnaire for a survey on Paluwagan (a traditional Filipino rotating savings and credit association) and digital financial inclusion. The script is divided into different sections, each containing questions related to demographics, Paluwagan participation, digital financial inclusion, the impact of digital finance on Paluwagan, financial inclusion and Paluwagan, and a closing message thanking the participant for their participation. The code uses the print() function to display text on the console. It incorporates newline characters ("\n") to create line breaks and improve the readability of the questionnaire. The questionnaire includes a variety of questions related to demographics, Paluwagan participation, digital financial inclusion, the use of digital tools in Paluwagan management, and the impact of Paluwagan on financial well-being. Overall, this code serves as a template for generating and printing a questionnaire for conducting a survey related to Paluwagan and digital financial inclusion in the Philippines.
1
# Print the questionnaire
2
3
print("**Paluwagan and Digital Financial Inclusion Survey**")
4
print("Thank you for participating in this survey. Your responses will help us understand the impact of digital financial inclusion on paluwagan practices in the Philippines.")
5
6
print("\n**Section 1: Demographics**")
7
8
print("1. Age:")
9
print("2. Gender:")
10
print(" - Male")
11
print(" - Female")
12
print(" - Prefer not to say")
13
print("3. Occupation:")
14
print("4. Highest level of education:")
15
print(" - No formal education")
16
print(" - Elementary school")
17
print(" - High school")
18
print(" - College degree")
19
print(" - Postgraduate degree")
20
print("5. Monthly income:")
21
print(" - Below ₱15,000")
22
print(" - ₱15,000 - ₱29,999")
23
print(" - ₱30,000 - ₱44,999")
24
print(" - ₱45,000 and above")
25
print("6. Location:")
26
print(" - Rural area")
27
print(" - Urban area")
28
29
print("\n**Section 2: Paluwagan Participation**")
30
31
print("1. Are you currently a member of a paluwagan? (Yes/No)")
32
print("2. If yes, for how long have you been a member? (Years)")
33
print("3. What is your role in the paluwagan? (e.g., member, leader)")
34
print("4. How often do you contribute to the paluwagan? (Weekly/Monthly/Other)")
35
print("5. What was your primary reason for joining a paluwagan?")
36
37
print("\n**Section 3: Digital Financial Inclusion**")
38
39
print("1. Do you own a mobile phone? (Yes/No)")
40
print("2. Do you own a smartphone? (Yes/No)")
41
print("3. Have you ever used mobile banking or e-wallets? (Yes/No)")
42
print("4. How often do you use mobile banking or e-wallets for financial transactions? (Daily/Weekly/Monthly/Never)")
43
print("5. Have you ever encountered any challenges while using digital financial services? (Yes/No)")
44
print(" - If yes, please briefly describe the challenges you faced.")
45
46
print("\n**Section 4: Impact of Digital Finance on Paluwagan**")
47
48
print("1. Does your paluwagan use any digital tools for managing contributions, payouts, or records? (Yes/No)")
49
print("2. If yes, what specific digital tools do you use? (e.g., messaging apps, spreadsheets)")
50
print("3. How has the use of digital tools changed the way your paluwagan operates? (Please elaborate)")
51
print("4. What are the perceived benefits of using digital tools in paluwagan management? (Please select all that apply)")
52
print(" - Increased efficiency")
53
print(" - Improved transparency")
54
print(" - Easier record-keeping")
55
print(" - Other (Please specify)")
56
print("5. What are the challenges, if any, associated with using digital tools in paluwagan management? (Please elaborate)")
57
58
print("\n**Section 5: Financial Inclusion and Paluwagan**")
59
60
print("1. Do you have a bank account? (Yes/No)")
61
print("2. If yes, what type of bank account do you have? (Savings/Checking/Both)")
62
print("3. How often do you use your bank account? (Daily/Weekly/Monthly/Never)")
63
print("4. In what situations do you typically use paluwagan instead of formal financial services? (Please elaborate)")
64
print("5. How has your participation in a paluwagan impacted your financial well-being? (Please elaborate)")
65
66
print("\nThank you for your participation! Your responses are valuable to this research.")