Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8262819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T03:52:46+00:00 2026-06-08T03:52:46+00:00

So in java you can do something like this if you don’t know how

  • 0

So in java you can do something like this if you don’t know how many parameters you are going to get

private void testMethod(String... testStringArray){

}

How can I do something like this in python

as I can’t do something like this right?

def testMethod(...listA):
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T03:52:48+00:00Added an answer on June 8, 2026 at 3:52 am

    Are you talking about variable length argument lists? If so, take a look at *args, **kwargs.

    See this Basic Guide and How to use *args and **kwargs in Python

    Two short examples from [1]:

    Using *args:

    def test_var_args(farg, *args):
        print "formal arg:", farg
        for arg in args:
            print "another arg:", arg
    
    test_var_args(1, "two", 3)
    

    Results:

    formal arg: 1
    another arg: two
    another arg: 3
    

    and using **kwargs (keyword arguments):

    def test_var_kwargs(farg, **kwargs):
        print "formal arg:", farg
        for key in kwargs:
            print "another keyword arg: %s: %s" % (key, kwargs[key])
    
    test_var_kwargs(farg=1, myarg2="two", myarg3=3)
    

    Results:

    formal arg: 1
    another keyword arg: myarg2: two
    another keyword arg: myarg3: 3
    

    Quoting from this SO question What do *args and **kwargs mean?:

    Putting *args and/or **kwargs as the last items in your function
    definition’s argument list allows that function to accept an arbitrary
    number of anonymous and/or keyword arguments.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have something like this going on in my Java program: void f(Object o)
When we create interface methods, can't we do something like in java : void
In Java I can have a method declaration something like this: <T> List<T> getList(final
In Java you can do something like: byte[] code = ReadFromClassFile(SomethingSomething.class); SendAcrossNetwork(code); And on
So I know that you can add an object in java to something through
Possible Duplicate: Can anyone recommend a Java rich text editor? i need something like
When I got something like this ERROR/AndroidRuntime(18677): Caused by: java.lang.NullPointerException ERROR/AndroidRuntime(18677): at com.companyname.a.a.a(Unknown Source)
In java, I can write code like this Boolean b = true ; And
When I compile something like this: public class MyClass { void myMethod(String name, String
How can I create a barcode image in Java? I need something that will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.