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

Python Developer Jobs in Raleigh, NC

Browse Python Developer Vacancies in Raleigh, NC

Backend Developer - NY- T

Work Experience1 - 3 Years
Functional AreaIT Software
EducationGraduate

Hi Jobseeker, We are looking for Backend Developer!  Job Role: Backend Developer Location: Hybrid / Onsite Position: Full Time &...

Salary:
$110000 - $125000 / Per Year
Work Authorization:
Preferred Employment:
  • Corp-Corp,
  • W2-Permanent,
  • W2-Contract,
  • + More
    • 1099-Contract

    Software Developer

    Work Experience0 - 5 Years
    Functional AreaIT Software
    EducationHigh School

    Job description: Job description Company Description Magnus Technology Solutions is a leading services firm that offers consulting, outsourcing, and staffing services ...

    Salary:
    $90000 - $130000 / Per Year
    Work Authorization:
    • Valid Work Visa,
    • US Citizen,
    • Green Card,
    • + More
      • H4
      Preferred Employment:
      • W2-Permanent,
      • Full Time

      Software Developer

      Work Experience0 - 4 Years
      Functional AreaIT Software
      EducationHigh School

      Job description: Job description Company Description Magnus Technology Solutions is a leading services firm that offers consulting, outsourcing, and staffing services ...

      Salary:
      $75000 - $130000 / Per Year
      Work Authorization:
      • Valid Work Visa,
      • US Citizen,
      • Green Card,
      • + More
        • H4
        Preferred Employment:
        • W2-Permanent,
        • Full Time

        Fullstack Developer

        Work Experience0 - 5 Years
        Functional AreaIT Software
        EducationHigh School

        Job description:   Software Development Engineer: • Experience with one or more programing language: React, Angular, JavaScript, CSS, HTML5, RESTful...

        Salary:
        $90000 - $130000 / Per Year
        Work Authorization:
        • Valid Work Visa,
        • US Citizen,
        • Green Card,
        • H4,
        • + More
          • OPT
          Preferred Employment:
          • W2-Permanent,
          • Full Time

          JR AND MID LEVEL (FULLTIME JOBS) FOR EXP AND NON EXP - ALL

          Work Experience0 - 12 Years
          Functional AreaIT Software
          EducationGraduate

          Job description: Greetings  This is Nidhish from Magnus technologies  We have immediate requirements on  technologies in USA for the consultant who has...

          Salary:
          $90000 - $175000 / Per Year
          Work Authorization:
          • Valid Work Visa,
          • US Citizen,
          • Green Card,
          • EAD / TN,
          • H1B,
          • H4,
          • L2,
          • STEM,
          • + More
            • OPT
            Preferred Employment:
            • Corp-Corp,
            • W2-Permanent,
            • W2-Contract,
            • 1099-Contract,
            • Contract to Hire,
            • Need H1B,
            • Online / Remote,
            • Full Time,
            • + More
              • Hybrid

              Data Scientist (Citizens/ Greencard/ H4)

              Work Experience0 - 5 Years
              Functional AreaIT Software
              EducationGraduate

              Job description: We are looking for a Data Scientist to analyze large amounts of raw information to find patterns that will help improve our company. We will rely on you to ...

              Salary:
              $80000 - $100000 / Per Year
              Work Authorization:
              Preferred Employment:
              • W2-Permanent,
              • Full Time

              Python Developer (Citizens/ Greencard/ H4)

              Work Experience0 - 5 Years
              Functional AreaIT Software
              EducationHigh School

              As a Python developer, you will be responsible for writing and testing scalable code, developing back-end components, and integrating user-facing elements i...

              Salary:
              $80000 - $100000 / Per Year
              Work Authorization:
              Preferred Employment:
              • W2-Permanent,
              • Full Time

              Data Analyst (Citizens/ Greencard/ H4)

              Work Experience0 - 5 Years
              Functional AreaIT Software
              EducationGraduate

              Job description: We are looking for a passionate certified Data Analyst. The successful candidate will turn data into information, information into insight and insight into ...

              Salary:
              $80000 - $100000 / Per Year
              Work Authorization:
              Preferred Employment:
              • W2-Permanent,
              • Full Time

              Python Developer (Citizens/ Greencard)

              Work Experience0 - 5 Years
              Functional AreaIT Software
              EducationGraduate

              Job description: We're looking for a Python developer to join our engineering team and play a key role in crafting dynamic software applications for our clients.  ...

              Salary:
              $80000 - $100000 / Per Year
              Work Authorization:
              • US Citizen,
              • Green Card
              Preferred Employment:
              • W2-Permanent,
              • Full Time

              Data Scientist (Citizens/ Greencard/ H4)

              Work Experience0 - 5 Years
              Functional AreaIT Software
              EducationGraduate

              Job description: Job brief We are looking for a Data Scientist to analyze large amounts of raw information to find patterns that will help improve our company. We will rely...

              Salary:
              $80000 - $100000 / Per Year
              Work Authorization:
              Preferred Employment:
              • W2-Permanent,
              • Full Time
              techjobs quiz page promo link
              Want alert on new jobs?Get the best matching Jobs through email!

              Python Developer Jobs in Raleigh, NC -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

              $45
              • 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
              $40
              • 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
              $30
              • 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