Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
normal,*args,**kwargs
Language:
Ada
Assembly
Bash
C#
C++ (gcc)
C++ (clang)
C++ (vc++)
C (gcc)
C (clang)
C (vc)
Client Side
Clojure
Common Lisp
D
Elixir
Erlang
F#
Fortran
Go
Haskell
Java
Javascript
Kotlin
Lua
MySql
Node.js
Ocaml
Octave
Objective-C
Oracle
Pascal
Perl
Php
PostgreSQL
Prolog
Python
Python 3
R
Rust
Ruby
Scala
Scheme
Sql Server
Swift
Tcl
Visual Basic
Layout:
Vertical
Horizontal
#python 3.5.2 def function1(normal,*args,**kwargs): print(normal) for item in args: print(item) for key,value in kwargs.items(): print(key,' ',value) normal=("ok ok hehehe") argsbhai=["bunny","manu","rani","goru","mastani","sheru"] kwargsbhai={"mobile":"earphone","bike":"bikes","punjabi":"songs"} function1(normal,*argsbhai,**kwargsbhai)
[
+
]
Show input
Absolute running time: 0.12 sec, cpu time: 0.09 sec, memory peak: 6 Mb, absolute service time: 0,13 sec
edit mode
|
history
|
discussion
ok ok hehehe bunny manu rani goru mastani sheru punjabi songs bike bikes mobile earphone