Offer
Flat 10% OFF on posting fee
Jobs
Search
Post your need
× Filter
Are you looking for a Job or Hiring Experts?Get right matches acros various industries!Get Started Now!

Python Developer Jobs in Humboldt, SK

Browse Python Developer Vacancies in Humboldt, SK

Python Developer - VR

  Python Developer  1 hour ago
Work Experience0 - 5 Years
Functional AreaIT Software
EducationGraduate

Job description: 5+ years of professional experience in Python development, with a strong emphasis on object-oriented programming and API design. Proven hands-on experien...

Salary:
$110000 - $125000 / Per Year
Work Authorization:
  • Valid Work Visa,
  • US Citizen,
  • Green Card,
  • + More
    • EAD / TN
    Preferred Employment:
    • Corp-Corp,
    • W2-Permanent,
    • + More
      • W2-Contract
      • Openings:10
      • 0 miles

      Python Developer NC RM

        Python Developer  16 hrs ago
      Work Experience0 - 2 Years
      Functional AreaIT Software
      EducationGraduate

      Job description: Hi Jobseeker, We are hiring Python Developers! Must have strong skills in Python, Django/Flask, and REST API development. Full-time role with immediate j...

      Salary:
      $98000 - $118000 / Per Year
      Work Authorization:
      • US Citizen,
      • Green Card
      Preferred Employment:
      • W2-Permanent,
      • W2-Contract,
      • 1099-Contract,
      • + More
        • Full Time
        • Openings:15
        • 0 miles

        Python Developer-Fulltime-TX

        Work Experience1 - 2 Years
        Functional AreaIT Software
        EducationGraduate

        Job description: Required Skills: BS or MS in Computer Science or relevant experience. 3+ years experience developing enterprise applications. Power & Gas Commoditi...

        Salary:
        $80000 - $90000 / Per Year
        Work Authorization:
        • Valid Work Visa,
        • US Citizen,
        • Green Card,
        • + More
          • H4
          Preferred Employment:
          • Corp-Corp,
          • W2-Permanent,
          • + More
            • Full Time
            • Openings:15
            • 0 miles

            Python Developer - VR

            Work Experience0 - 7 Years
            Functional AreaIT Software
            EducationGraduate

            Job description: Note : We consu-ltancy are to market for Full-Time opportunities. Interested only respond to the post.              Peop...

            Salary:
            $100 - $120 / Per Year
            Work Authorization:
            • Valid Work Visa,
            • US Citizen,
            • Green Card,
            • + More
              • EAD / TN
              Preferred Employment:
              • Corp-Corp,
              • W2-Permanent,
              • + More
                • W2-Contract
                • Openings:15
                • 0 miles

                Python Developer-Fulltime-NY

                Work Experience1 - 3 Years
                Functional AreaIT Software
                EducationGraduate

                Job description: Job description:2+ years overall experience, including 1+ years in AI Proficiency in Python, ML, NLP, and text data analysisHands-on experience with API cr...

                Salary:
                $80000 - $100000 / Per Year
                Work Authorization:
                • Valid Work Visa,
                • US Citizen,
                • Green Card,
                • EAD / TN,
                • + More
                  • H4
                  Preferred Employment:
                  • Corp-Corp,
                  • W2-Permanent,
                  • + More
                    • Full Time
                    • Openings:20+
                    • 0 miles

                    Python Developer

                    Work Experience0 - 7 Years
                    Functional AreaIT Software
                    EducationGraduate

                    Job description: Develop and maintain backend services and APIs using Python (e.g., Flask, FastAPI). Implement and support RESTful microservices integrated with cloud dat...

                    Salary:
                    $10000 - $130000 / Per Year
                    Work Authorization:
                    • Valid Work Visa,
                    • US Citizen,
                    • Green Card,
                    • + More
                      • EAD / TN
                      Preferred Employment:
                      • W2-Permanent,
                      • Full Time
                      • Openings:15
                      • 0 miles

                      Python Developer

                      Work Experience2 - 5 Years
                      Functional AreaIT Software
                      EducationGraduate

                      Job description: Hiring: Python Developer ?? Location: Preferred Newyork, But Remote is an option ?? Experience: 2 to 5 Years ?? Job Type: Full-Time Key Skills Requir...

                      Salary:
                      $75000 - $95000 / Per Year
                      Work Authorization:
                      Preferred Employment:
                      • W2-Permanent,
                      • W2-Contract,
                      • + More
                        • Full Time
                        • Openings:6
                        • 0 miles

                        Python Developer

                        Work Experience0 - 8 Years
                        Functional AreaIT Software
                        EducationHigh School

                        ??‍?? Entry-Level Python Developer (Fresher) – Multiple Locations Across USA ?? Location: All Major Cities | Remote / Hybrid / Onsite (Based on Cl...

                        Salary:
                        $55 - $65 / Per Hour
                        Work Authorization:
                        • Valid Work Visa
                        Preferred Employment:
                        • Corp-Corp
                        • Openings:20+
                        • 0 miles
                        techjobs quiz page promo link
                        Want alert on new jobs?Get the best matching Jobs through email!

                        Python Developer Jobs in Humboldt, SK -FAQ

                        Python Developer Interview Questions

                        • 1. What is Python, and what are the benefits of using Python?

                          Python is a high-level, interpreted, general-purpose programming language. Some of the benefits are it’s readability, easy to learn the syntax and it supports third-party packages encouraging modularity and code-reuse.

                        • 2. What is PEP 8?

                          PEP stands for Python Enhancement Proposal, and it is an official design document which provides information to the Python Community.

                        • 3. What is a local namespace?

                          Local Namespace includes local names inside a function. It is temporarily created for a function call and clears when the function returns.

                        • 4. What are the commonly used built-in modules in Python?

                          • OS
                          • SYS
                          • Math
                          • Random
                          • Data Time
                          • JSON
                        • 5. What is a global variable and how they are accessed?

                          Global variables are variables which are declared outside a function or in global space are called global variables. These variables can be accessed by any function in the program.

                        • 6. Is python case sensitive?

                          yes it is, Python is a case sensitive language.

                        • 7. What is pickling?

                          Pickling is the name of the serialization process in Python, and the process is compact.

                        • 8. How to delete a file in Python?

                          • Using the command os.remove(file_name)
                          • import os
                          • os.remove("ChangedFile.csv")
                          • print("File Removed!")
                        • 9. What are function?

                          A function is a block of code which is executed only when it is called.

                          Example:

                          • def Newfunc():
                          • print("Hi, Welcome to My Job Portal")
                          • Newfunc(); #calling the function

                          Output: Hi, Welcome to My Job Portal

                        • 10. What is docstring?

                          A multiline string which is used to document a specific code segment is called a Documentation string or docstring.

                        • 11. How are arguments passed by value or by reference?

                          • TO Pass by value the copy of the actual object is passed. Changing the value of the copy of the object will not change the value of the original object.
                          • Pass by reference: Reference to the actual object is passed. Changing the value of the new object will change the value of the original object.
                        • 12. What are negative indexes?

                          Negative indexes are the indexes from the end of the list or tuple or string.

                        • 13. What are the built-in types of Python?

                          Built-in types in Python are

                          • Integers
                          • Floating-point
                          • Complex numbers
                          • Strings
                          • Boolean
                          • Built-in functions
                        • 14. How are classes created?

                          Class is created using the class keyword.

                          Example:

                          • class Employee:
                          • def __init__(self, name):
                          • self.name = name
                          • E1=Employee("abc")
                          • print(E1.name)

                          Output: abc

                        • 15. How do you write comments in Python?

                          Comments in Python start with a # character. Sometimes it is done using docstrings(strings enclosed within triple quotes).

                        We're here to help! Tell us what you're looking for.Connecting Top Talent with the Right Opportunities—Your Hiring & Job Search Partner!
                        I want to hire people

                        Budget-friendly hiring starts here! Post jobs, explore talent, and hire the best.

                        I want a job

                        Explore top job opportunities. One quick profile, thousands of opportunities—get started in just 3 minutes!

                        Tell us about Your SkillsRecruiters search by skills—adding yours increases your chances of getting hired quickly.
                        Tell Us Where You Are In Your Career Journey! *
                        How Many Years of Experience Do You Have?
                        What Type of Job Are You Looking For? *
                        Skill Selection *
                        i
                        Highlight what makes you stand out! Recruiters are looking for candidates with the right expertise—don’t miss out!
                        Choose Up to 10 Skills
                        Define Your Job PreferencesMake sure you’re matched with the best opportunities based on your preferences.
                        What Is Your Current Location? *
                        Where Are You Open to Work?*
                        What Visa Type Do You Possess? *
                        What Kind of Employment Are You Looking For? *
                        Upload ResumeAn upload resume is key to being shortlisted
                        Expected Salary Range
                        Your Educational Qualification*
                        Personal DetailsTo make contact faster!
                        Gender
                        Date of Birth
                        What are the languages you know?*
                        About You *
                        Great! Your job wanted post and profile are ready!

                        Upgrade to premium for better visibility

                        $35
                        • 4 Month Validity
                        • Higher visibility
                        • Job matching alert emails
                        • Unlimited responses from recruiters
                        • Unlimited direct messaging and call to recruiters
                        • Featured Premium Profile will be created
                        • Profile views tracking
                        • Hide/Unhide your profile
                        • Profile promo mailers to recruiters
                        $30
                        • 3 Month Validity
                        • 7x more visibility
                        • Job matching alert emails
                        • Unlimited responses from recruiters
                        • Unlimited direct messaging and call to recruiters
                        • Featured Premium Profile will be created
                        • Profile views tracking
                        • Hide/Unhide your profile
                        • Profile promo mailers to recruiters
                        $20
                        • 2 Month Validity
                        • 4x more visibility
                        • Job matching alert emails
                        • Unlimited responses from recruiters
                        • Unlimited direct messaging and call to recruiters
                        • Featured Premium Profile will be created
                        • Profile views tracking
                        • Hide/Unhide your profile
                        • Profile promo mailers to recruiters

                        loading.....

                        Hello Thangamani It looks like you've already placed an
                        ad with us. Would you like to:

                        Take a look at your current listing and make any necessary updates.

                        OR

                        If you have a new housing requirement, we're here to help you find the perfect match.

                        Choose the option that suits you best, and we'll take care of the rest.
                        Mobile Verification
                        Mobile Verification We've sent you an one time password to your mobile number +91-9488003951Change number.
                        Invalid OTP! Please try again
                        Resend OTP in0:57Didn't receive code?ResendOTPorClick to call
                        Hire Smarter, Faster, and Better!Choose the Best Hiring Plan & Get Instant Access to Top Candidates!
                        Pick your option and discover the best candidates easily. *
                        Post job ads to receive applications from job seekers along with their matching resumes.
                        Access our extensive resume database to find candidates based on your requirements. View, download and contact job seekers directly.
                        Combine both options. Post job ads and access our resume database to find and connect with the right candidate.
                        Increase Responses by Sharing Who You Are!A clear introduction leads to more applications.
                        Describe Your Company/Organization in a Few Words
                        Post your Job in just 3 minutes! Step 1: Basic Job details
                        Are You Hiring for IT or Non-IT Roles? *
                        Define the Experience Level & Employment TypeStep 2: Basic Job details
                        Specify the Key Skills You’re Looking For*
                        Describe the Responsibilities & Requirements *
                        What Kind of Employment you Offer? *
                        Specify Candidate Requirements for This RoleStep 3: Help Us Find the Best Match—Mention the Required Languages, Gender, and Education!
                        Select the preferred gender for this role:
                        What languages should the candidate be proficient in?*
                        What educational background is required?
                        Visa Type *
                        Work Benefits
                        Your hiring post is ready! Start receiving applications from interested candidates right away!

                        Upgrade to Premium for Faster, Smarter Hiring! Unlock more matching profiles and reach top candidates instantly.

                        $149
                        • 100 Days Validity
                        • Ad will be activated instantly.
                        • Ad will be promoted on our platform, mobile app, social platforms, and our partner sites.
                        • Ad gets Premium label
                        • Ad gets highlighted for higher visibility
                        • Application alerts email notification
                        • Unlimited application views
                        • Send email to unlimited responses
                        • Complimentary - 20 Matching Resumes
                        • Boost on job search page
                        • Additional marketing to ensure more responses
                        • Dedicated customer sucess manager
                        • Access dashboard & mobile app
                        $119
                        • 70 Days Validity
                        • Ad will be activated instantly.
                        • Ad will be promoted on our platform, mobile app, social platforms, and our partner sites.
                        • Ad gets Standard label
                        • 7x more visibility
                        • Application alerts email notification
                        • Unlimited application views
                        • Send email to unlimited responses
                        • Complimentary - 20 Matching Resumes
                        • Boost on job search page
                        • Additional marketing to ensure more responses
                        • Dedicated customer sucess manager
                        • Access dashboard & mobile app
                        $99
                        • 50 Days Validity
                        • Ad will be activated instantly.
                        • Ad will be promoted on our platform, mobile app, social platforms, and our partner sites.
                        • Ad gets Basic label
                        • 4x more visibility
                        • Application alerts email notification
                        • Unlimited application views
                        • Send email to unlimited responses
                        • Complimentary - 10 Matching Resumes
                        • Boost on job search page
                        • Additional marketing to ensure more responses
                        • Dedicated customer sucess manager
                        • Access dashboard & mobile app
                        $79
                        • 35 Days Validity
                        • Ad will be activated instantly.
                        • Ad will be promoted on our platform alone.
                        • Ad gets Starter label
                        • Limited visibility
                        • Application alerts email notification
                        • Unlimited application views
                        • Send email to unlimited responses
                        • Complimentary - 10 Matching Resumes
                        • Boost on job search page
                        • No additional marketing
                        • Dedicated customer sucess manager
                        • Access dashboard & mobile app

                        loading.....

                        Mobile AuthenticationTo ensure trust and boost response rates
                        Mobile Verification We've sent you an one time password to your mobile number+1-9488003951Change number.
                        Invalid OTP! Please try again
                        Resend OTP in 00:45Didn't receive code?ResendOTPorClick to call
                        Are you Looking for a Job or Hiring Experts?Get instant matches across various industries!
                        Administration
                        Administration
                        Retail Store
                        Retail Store
                        Administration
                        Accounting
                        Administration
                        Healthcare
                        Administration
                        Sales & Marketing
                        Hotel Restaurants
                        Hotel & Restaurants
                        Administration
                        Beauty & Fashion
                        Administration
                        15 more

                        Looking / Offering jobs in Canada?